diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2019-12-01 12:06:46 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2019-12-01 12:06:46 +0100 |
| commit | d8fea13dc5cf9bbcff80be7c9bb6834fda08cfdb (patch) | |
| tree | 267de75f9df26bfe56cb8336c7597a6a9006f5be /cli/app/commands/process | |
| parent | d9c3928e542faabaf8a9cb3d235029939cb65f09 (diff) | |
cli
Diffstat (limited to 'cli/app/commands/process')
| -rw-r--r-- | cli/app/commands/process/fetch.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/cli/app/commands/process/fetch.py b/cli/app/commands/process/fetch.py new file mode 100644 index 0000000..a558d94 --- /dev/null +++ b/cli/app/commands/process/fetch.py @@ -0,0 +1,20 @@ +import click + +from app.utils import click_utils +from app.settings import app_cfg + +@click.command('') +# @click.option('-i', '--input', 'opt_dir_in', required=True, +# help='Path to input image glob directory') +# @click.option('-r', '--recursive', 'opt_recursive', is_flag=True) +@click.pass_context +def cli(ctx): + """ + Converts directory of images to BigGAN* vectors + """ + + # ------------------------------------------------ + # imports + + # app_cfg.MODELZOO_CFG + pass |
