Source code for pudl.analysis.ml_tools

"""Implements shared tooling for machine learning models in PUDL."""

from . import models


[docs] def get_ml_models_config(): """Return default configuration for all PUDL models.""" return {"ops": models.MODEL_CONFIGURATION}