Skip to content

Commit

Permalink
docs: fix create experiment sample (#1716)
Browse files Browse the repository at this point in the history
  • Loading branch information
sasha-gitg authored Oct 5, 2022
1 parent f28988e commit cba7fbf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def create_experiment_sample(
location: str,
):
aiplatform.init(
experiment_name=experiment_name,
experiment=experiment_name,
experiment_description=experiment_description,
experiment_tensorboard=experiment_tensorboard,
project=project,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def test_create_experiment_sample(mock_sdk_init):
)

mock_sdk_init.assert_called_with(
experiment_name=constants.EXPERIMENT_NAME,
experiment=constants.EXPERIMENT_NAME,
experiment_description=constants.DESCRIPTION,
experiment_tensorboard=constants.TENSORBOARD_NAME,
project=constants.PROJECT,
Expand Down

0 comments on commit cba7fbf

Please sign in to comment.