Train a trained Feature detector with a specific training data set.\n Provide path to the pose_config file. CONFIG: Full path of the config.yaml file in the train directory of a project.\n e.g. run the script like this: python3 dlc.py step7_train /home/project/reaching/conf
(_, *args, **kwargs)
| 248 | ) |
| 249 | @click.pass_context |
| 250 | def train_network(_, *args, **kwargs): |
| 251 | """Train a trained Feature detector with a specific training data set.\n |
| 252 | Provide path to the pose_config file. |
| 253 | CONFIG: Full path of the config.yaml file in the train directory of a project.\n |
| 254 | |
| 255 | e.g. run the script like this: |
| 256 | python3 dlc.py step7_train /home/project/reaching/config.yaml |
| 257 | |
| 258 | """ |
| 259 | from deeplabcut.pose_estimation_tensorflow import training |
| 260 | |
| 261 | training.train_network(*args, **kwargs) |
| 262 | |
| 263 | |
| 264 | ########################################################################## |
nothing calls this directly
no test coverage detected