dlc2action.task
Training and inference
dlc2action.task.universal_task.Task
is the class that performs training and inference while
'dlc2action.task.task_dispatcher.TaskDispatchercreates and updates
dlc2action.task.universal_task.Task` instances
in accordance with task parameter dictionaries.
1# 2# Copyright 2020-2022 by A. Mathis Group and contributors. All rights reserved. 3# 4# This project and all its files are licensed under GNU AGPLv3 or later version. A copy is included in dlc2action/LICENSE.AGPL. 5# 6""" 7## Training and inference 8 9`dlc2action.task.universal_task.Task` is the class that performs training and inference while 10'dlc2action.task.task_dispatcher.TaskDispatcher` creates and updates `dlc2action.task.universal_task.Task` instances 11in accordance with task parameter dictionaries. 12""" 13 14from dlc2action.task.task_dispatcher import TaskDispatcher 15from dlc2action.task.universal_task import Task