We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6542c7c commit 66365b7Copy full SHA for 66365b7
incense/experiment.py
@@ -143,9 +143,11 @@ def __getattr__(self, item):
143
def from_run_dir(cls, run_dir: Path):
144
id_ = int(run_dir.name)
145
config = _load_json_from_path(run_dir / "config.json")
146
+ info = _load_json_from_path(run_dir / "info.json")
147
run_data = _load_json_from_path(run_dir / "run.json")
148
cout = (run_dir / "cout.txt").read_text()
149
run_data["config"] = config
150
+ run_data["info"] = info
151
run_data["captured_out"] = cout
152
metrics = cls._load_metrics(run_dir / "metrics.json")
153
artifacts = cls._load_artifacts(run_dir)
0 commit comments