Skip to content

Commit

Permalink
Fix step name argument in hyperparameter tuning code example (#3259)
Browse files Browse the repository at this point in the history
  • Loading branch information
stefannica authored Dec 13, 2024
1 parent f738d66 commit 87cf23d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def my_pipeline(step_count: int) -> None:
data = load_data_step()
after = []
for i in range(step_count):
train_step(data, learning_rate=i * 0.0001, name=f"train_step_{i}")
train_step(data, learning_rate=i * 0.0001, id=f"train_step_{i}")
after.append(f"train_step_{i}")
model = select_model_step(..., after=after)
```
Expand Down

0 comments on commit 87cf23d

Please sign in to comment.