Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 20 additions & 3 deletions src/evalml/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,7 @@ def showcase(configfile, cores, verbose, dry_run, unlock, report, extra_smk_args
)


@cli.command(
help="Generate a sandbox for inference for the runs defined in the config YAML file."
)
@cli.command(help="Generate a sandbox for inference runs in the YAML config file.")
@click.argument(
"configfile", type=click.Path(exists=True, dir_okay=False, path_type=Path)
)
Expand All @@ -146,3 +144,22 @@ def sandbox(configfile, cores, verbose, dry_run, unlock, report, extra_smk_args)
report,
extra_smk_args,
)


@cli.command(help="Make a specific file from a workflow defined in the YAML file.")
@click.argument(
"configfile", type=click.Path(exists=True, dir_okay=False, path_type=Path)
)
@click.argument("target", type=str)
@workflow_options
def make(configfile, target, cores, verbose, dry_run, unlock, report, extra_smk_args):
execute_workflow(
configfile,
target,
cores,
verbose,
dry_run,
unlock,
report,
extra_smk_args,
)
Loading