File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed
Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## Release 0.1.1
4+
5+ - Fixing bug in the Reactivity UI page with the incorrect data being displayed in
6+ the summary statistics table.
7+
38## Release 0.1.0
49
510- Adding benchmark implementations for 15 benchmarks.
Original file line number Diff line number Diff line change 11[project ]
22name = " mlipaudit"
3- version = " 0.1.0 "
3+ version = " 0.1.1 "
44description = " Library and CLI tool for benchmarking ML Interatomic Potentials"
55readme = " README.md"
66authors = [
Original file line number Diff line number Diff line change @@ -41,10 +41,10 @@ def _process_data_into_dataframe(
4141 converted_data_scores , model_names = [], []
4242 for model_name , result in data .items ():
4343 if model_name in selected_models :
44- mae_activation = result .mae_enthalpy_of_reaction * conversion_factor # type: ignore
44+ mae_activation = result .mae_activation_energy * conversion_factor # type: ignore
4545 rmse_activation = result .rmse_activation_energy * conversion_factor # type: ignore
4646 mae_enthalpy = result .mae_enthalpy_of_reaction * conversion_factor # type: ignore
47- rmse_enthalpy = result .mae_enthalpy_of_reaction * conversion_factor # type: ignore
47+ rmse_enthalpy = result .rmse_enthalpy_of_reaction * conversion_factor # type: ignore
4848 model_data_converted = {
4949 "Score" : result .score ,
5050 f"Activation energy MAE ({ selected_energy_unit } )" : mae_activation ,
You can’t perform that action at this time.
0 commit comments