getitune-discovering-models
Installation
SKILL.md
Discovering models and recipes in getitune
Every trainable model in getitune is backed by a recipe YAML under
library/src/getitune/recipe/<task>/. Recipes are self-discovering, so listing
them is how you learn what you can train and what to pass to create_engine.
Run everything from library/.
List models from Python
from getitune.utils import list_models
list_models() # all model names
list_models(return_recipes=True) # full recipe YAML paths
list_models(task="DETECTION") # filter by task
list_models(pattern="*efficient*") # filter by name pattern
list_models(task="DETECTION", return_recipes=True) # recipe paths for one task