blob: a558d94745f575bf5bde4bf65c5dd1d4c2640988 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
|