Skip to content

Commit

Permalink
eval_metrics -> evaluation_metrics in OCP tutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
zulissimeta committed Jul 8, 2024
1 parent dd3f70d commit 283af83
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions docs/legacy_tutorials/OCP_Tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -926,7 +926,7 @@ trainer = OCPTrainer(
optimizer=optimizer,
outputs={},
loss_functions={},
eval_metrics={},
evaluation_metrics={},
name="s2ef",
identifier="S2EF-example",
run_dir=".", # directory to save results if is_debug=False. Prediction files are saved here so be careful not to override!
Expand Down Expand Up @@ -1008,7 +1008,7 @@ pretrained_trainer = OCPTrainer(
optimizer=optimizer,
outputs={},
loss_functions={},
eval_metrics={},
evaluation_metrics={},
name="s2ef",
identifier="S2EF-val-example",
run_dir="./", # directory to save results if is_debug=False. Prediction files are saved here so be careful not to override!
Expand Down Expand Up @@ -1212,7 +1212,7 @@ energy_trainer = OCPTrainer(
optimizer=optimizer,
outputs={},
loss_functions={},
eval_metrics={},
evaluation_metrics={},
name="is2re",
identifier="IS2RE-example",
run_dir="./", # directory to save results if is_debug=False. Prediction files are saved here so be careful not to override!
Expand Down Expand Up @@ -1290,7 +1290,7 @@ pretrained_energy_trainer = OCPTrainer(
optimizer=optimizer,
outputs={},
loss_functions={},
eval_metrics={},
evaluation_metrics={},
name="is2re",
identifier="IS2RE-val-example",
run_dir="./", # directory to save results if is_debug=False. Prediction files are saved here so be careful not to override!
Expand Down Expand Up @@ -1515,7 +1515,7 @@ trainer = OCPTrainer(
optimizer=optimizer,
outputs={},
loss_functions={},
eval_metrics={},
evaluation_metrics={},
name="s2ef",
identifier="is2rs-example",
run_dir="./", # directory to save results if is_debug=False. Prediction files are saved here so be careful not to override!
Expand Down Expand Up @@ -1905,7 +1905,7 @@ trainer = OCPTrainer(
optimizer=optimizer,
outputs={},
loss_functions={},
eval_metrics={},
evaluation_metrics={},
name="s2ef",
identifier="S2EF-simple",
run_dir="./", # directory to save results if is_debug=False. Prediction files are saved here so be careful not to override!
Expand Down Expand Up @@ -1981,7 +1981,7 @@ trainer = OCPTrainer(
optimizer=optimizer,
outputs={},
loss_functions={},
eval_metrics={},
evaluation_metrics={},
name="s2ef",
identifier="S2EF-gemnet-t",
run_dir="./", # directory to save results if is_debug=False. Prediction files are saved here so be careful not to override!
Expand Down

0 comments on commit 283af83

Please sign in to comment.