Starting MLflow with FastAI (v2)
This is not meant as a comprehensive guide, rather just a place to start and get things up and running. Read further below for a background and explanation. Create a custom callback ## Tracking Classfrom mlflow.tracking import MlflowClientfrom mlflow.entities.run import Runfrom typing import Listclass MLFlowTracking(Callback): “A `LearnerCallback` that tracks the loss and other metrics into MLFlow” def __init__(self,...