-1

Could you please let me know if any such feature available in the current version of mlflow?

Naga Budigam
  • 689
  • 1
  • 10
  • 26

1 Answers1

2

I think the general answer here is that you can log arbitrary data and artifacts from your experiment to your MLflow tracking server using mlflow_log_artifact() or mlflow_set_tag(), depending on how you want to do it. If there's an API to get data from Glue and you can fetch it during your MLflow run, then you can log it. Write a csv, save a .png to disk and log that, or declare a variable and access it when you are setting the tag.

This applies for Glue or any other API that you are getting a response from. One of the key benefits of MLflow is that it is such a general framework, so you can track what matters to that particular experiment.

Hope this helps!

Raphael K
  • 2,265
  • 1
  • 16
  • 23