Skip to content
This repository was archived by the owner on Aug 11, 2020. It is now read-only.

Commit f1b6b99

Browse files
BartoszCkikossak
authored andcommitted
Fix variable name
1 parent 7d0125b commit f1b6b99

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

paperspace/cli/hyperparameters.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def create_and_start_hyperparameter(api_key, **hyperparameter):
9090

9191
@hyperparameters_group.command("list", help="List hyperparameters")
9292
@common.api_key_option
93-
def create_hyperparameter(api_key):
93+
def list_hyperparameters(api_key):
9494
hyperparameters_api = client.API(config.CONFIG_EXPERIMENTS_HOST, api_key=api_key)
9595
command = hyperparameters_commands.ListHyperparametersCommand(api=hyperparameters_api)
9696
command.execute()
@@ -130,7 +130,7 @@ def get_hyperparameter_details(api_key, id_):
130130
required=True,
131131
)
132132
@common.api_key_option
133-
def get_hyperparameter_details(api_key, id_):
133+
def start_hyperparameter_tuning(api_key, id_):
134134
hyperparameters_api = client.API(config.CONFIG_EXPERIMENTS_HOST, api_key=api_key)
135135
command = hyperparameters_commands.HyperparameterStartCommand(api=hyperparameters_api)
136136
command.execute(id_)

0 commit comments

Comments
 (0)