Spaces:
Running
Running
Yuan (Cyrus) Chiang
commited on
fix file base (#33)
Browse files
mlip_arena/tasks/eos_alloy/flow.py
CHANGED
@@ -69,7 +69,7 @@ def save_to_hdf(
|
|
69 |
fpath = Path(fpath)
|
70 |
fpath = fpath.with_stem(fpath.stem + f"_{calculator_name}")
|
71 |
|
72 |
-
family_path = Path(__file__) / REGISTRY[calculator_name]["family"]
|
73 |
family_path.mkdir(parents=True, exist_ok=True)
|
74 |
|
75 |
with open(family_path / f"{calculator_name}_{formula}.json", "w") as f:
|
|
|
69 |
fpath = Path(fpath)
|
70 |
fpath = fpath.with_stem(fpath.stem + f"_{calculator_name}")
|
71 |
|
72 |
+
family_path = Path(__file__).parent / REGISTRY[calculator_name]["family"]
|
73 |
family_path.mkdir(parents=True, exist_ok=True)
|
74 |
|
75 |
with open(family_path / f"{calculator_name}_{formula}.json", "w") as f:
|