Skip to content

Commit

Permalink
chore: update expeirments sample to use correct param names (#1586)
Browse files Browse the repository at this point in the history
Co-authored-by: Andrew Ferlitsch <aferlitsch@google.com>
  • Loading branch information
sararob and andrewferlitsch authored Aug 11, 2022
1 parent eb5a4b6 commit f787813
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ def log_pipeline_job_sample(
project: str,
location: str,
):
aiplatform.init(experiment_name=experiment_name, project=project, location=location)
aiplatform.init(experiment=experiment_name, project=project, location=location)

aiplatform.start_run(run_name=run_name, resume=True)
aiplatform.start_run(run=run_name, resume=True)

aiplatform.log(pipeline_job=pipeline_job)

Expand Down

0 comments on commit f787813

Please sign in to comment.