train.launch_experiment
train.launch_experiment(
create_runner_fn,
create_agent_fn
)
Launches the experiment.
Args:
create_runner_fn
: A function that takes as args a base directory
and a function for creating an agent and returns aRunner
-like object.create_agent_fn
: A function that takes as args a Tensorflow session
and an Atari 2600 Gym environment, and returns an agent.