Giorgi
Contributor

Maybe there are better solutions, here is what I've found:

from mlflow.tracking import MlflowClient
 
client = MlflowClient()
pd.read_csv(client.download_artifacts(run_id, "xgb-classifier-test-8/dataset_statistics.csv"))

View solution in original post