Skip to content

Commit 66365b7

Browse files
authored
Add info to file experiment. (#75)
1 parent 6542c7c commit 66365b7

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

incense/experiment.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,9 +143,11 @@ def __getattr__(self, item):
143143
def from_run_dir(cls, run_dir: Path):
144144
id_ = int(run_dir.name)
145145
config = _load_json_from_path(run_dir / "config.json")
146+
info = _load_json_from_path(run_dir / "info.json")
146147
run_data = _load_json_from_path(run_dir / "run.json")
147148
cout = (run_dir / "cout.txt").read_text()
148149
run_data["config"] = config
150+
run_data["info"] = info
149151
run_data["captured_out"] = cout
150152
metrics = cls._load_metrics(run_dir / "metrics.json")
151153
artifacts = cls._load_artifacts(run_dir)

0 commit comments

Comments
 (0)