def main(self, args):
import aetros.const
parser = argparse.ArgumentParser(formatter_class=argparse.RawTextHelpFormatter,
prog=aetros.const.__prog__ + ' run')
parser.add_argument('name', nargs='?', help="Model name")
parser.add_argument('--private', action='store_true', help="Make the model private. Example: aetros init my-model --private")
home_config = read_home_config()
parsed_args = parser.parse_args(args)
if not parsed_args.name:
parser.print_help()
sys.exit(1)
if os.path.exists('aetros.yml'):
config = yaml.safe_load(open('aetros.yml', 'r'))
if isinstance(config, dict) and 'model' in config:
print("failed: aetros.yml already exists with a linked model to " + config['model'])
sys.exit(1)
name = api.create_model(parsed_args.name or (os.path.basename(os.getcwd())), parsed_args.private)
with open('aetros.yml', 'w') as f:
f.write('model: ' + name)
print("aetros.yml created linked with model " + name + ' in ' + os.getcwd())
print("Open AETROS Trainer to see the model at https://" + home_config['host'] + '/model/' + name)
评论列表
文章目录