Train Almond Bot to perform complex tasks
client.record_episode
before every episode. Recording will automatically stop after the specified duration.
client.list_episodes(task_name="my_task")
to list all episodesclient.delete_episode(task_name="my_task", episode_id=episode.id)
to delete an episodeclient.replay_episode(task_name="my_task", episode_id=episode.id)
to replay an episodetrain_task
method.
You must provide a name for the task and a name for the training. The training name is used to identify the training when listing trainings or deleting a training. The model specifies which AIModel to use for training.
Note: Training takes hours to complete.
client.list_trainings(task_name="my_task")
to list all trainingsrun_task
method.