Add new K-Fold cross validation guide in Docs (#3975)

Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com>
This commit is contained in:
Burhan
2023-07-28 08:57:24 -04:00
committed by GitHub
parent 02a3cdd0e7
commit 62a0fb986a
7 changed files with 304 additions and 18 deletions

View File

@ -456,9 +456,10 @@ class Model:
@property
def task_map(self):
"""Map head to model, trainer, validator, and predictor classes
"""
Map head to model, trainer, validator, and predictor classes.
Returns:
task_map (dict)
task_map (dict): The map of model task to mode classes.
"""
raise NotImplementedError('Please provide task map for your model!')