def main(_): """Launch the experiment using the arguments from the command line.""" description = xm.ExperimentDescription(FLAGS.exp_name, tags=[ FLAGS.env_name, ]) experiment = build_experiment() xm.launch_experiment(description, experiment)
def main(_): """Launch the experiment using the arguments from the command line.""" description = xm.ExperimentDescription('HIS - trial=%d' % FLAGS.trial, tags=['his']) experiment = build_experiment() xm.launch_experiment(description, experiment)
def main(_): """Launch the experiment using the arguments from the command line.""" description = xm.ExperimentDescription('Aggregate IS data.', tags=[FLAGS.mode]) experiment = build_experiment() xm.launch_experiment(description, experiment)