ncaa_eval.model.registry module¶
Plugin registry for NCAA prediction models.
Provides decorator-based registration so that built-in and external models are discoverable at runtime without modifying core code.
- exception ncaa_eval.model.registry.ModelNotFoundError[source]¶
Bases:
KeyErrorRaised when a requested model name is not in the registry.
- ncaa_eval.model.registry.get_model(name: str) type[Model][source]¶
Return the model class registered under name.
Raises
ModelNotFoundErrorif not found.