Skip to content

Commit

Permalink
Fix missing record.args reference
Browse files Browse the repository at this point in the history
  • Loading branch information
WarmCyan committed Aug 9, 2023
1 parent e681355 commit 2ea85e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed
* Spacing issue around parameter set list in generated notebook.
* Extra metadata not grabbed in save_metadata if metadata had already been collected.



Expand Down
2 changes: 1 addition & 1 deletion curifactory/experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -647,7 +647,7 @@ def run_experiment( # noqa: C901 -- TODO: this does need to be broken up at som
TextColumn("{task.fields[name]}"),
)
for i, record in enumerate(mngr.map.records):
name = record.args.name if record.args is not None else "None"
name = record.params.name if record.params is not None else "None"
if record.is_aggregate:
name += " (aggregate)"
hash_big = record.get_hash()
Expand Down

0 comments on commit 2ea85e0

Please sign in to comment.