Skip to content

Commit

Permalink
update gap_fit command
Browse files Browse the repository at this point in the history
  • Loading branch information
JiQi535 committed Apr 15, 2022
1 parent 6979a88 commit 049acc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion maml/apps/pes/_gap.py
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ def train(
param = kwargs.get(param_name) if kwargs.get(param_name) else soap_params.get(param_name)
gap_command.append(param_name + "=" + f"{param}")
gap_command.append("add_species=T")
exe_command.append("gap.2020.01=" + "{" + "{}".format(" ".join(gap_command)) + "}")
exe_command.append("gap=" + "{" + "{}".format(" ".join(gap_command)) + "}")

for param_name in preprocess_params:
param = kwargs.get(param_name) if kwargs.get(param_name) else soap_params.get(param_name)
Expand Down

0 comments on commit 049acc0

Please sign in to comment.