Skip to content

Commit 62bf804

Browse files
authored
fix: reactivity summary metrics (#117)
* fix: reactivity summary metrics * feat: increment version and update CHANGELOG.md * fix: version number * feat: infinitive form
1 parent 0482cde commit 62bf804

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
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.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "mlipaudit"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
description = "Library and CLI tool for benchmarking ML Interatomic Potentials"
55
readme = "README.md"
66
authors = [

src/mlipaudit/ui/reactivity.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)