Skip to content

Commit

Permalink
Update populate_projects.py not to use the family arg to Run
Browse files Browse the repository at this point in the history
  • Loading branch information
kgodlewski committed Oct 29, 2024
1 parent 65a5555 commit 15ece10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/populate_projects.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def create_runs(project, index, tags, experiment_name=None):
print(f"create_runs({project}, {index}, {tags}, {experiment_name})")
kind = "run" if not experiment_name else "exp"
run_id = f"id-{kind}-{index}"
with Run(project=project, run_id=run_id, family=run_id, experiment_name=experiment_name) as run:
with Run(project=project, run_id=run_id, experiment_name=experiment_name) as run:
print("Populating run", run_id)
populate_run(run, run_id, tags=tags)

Expand Down

0 comments on commit 15ece10

Please sign in to comment.