-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to use tpot with MLFlow #1347
Comments
I haven't used MLFlow, is there an error you are getting that prevents TPOT from working? |
Hi Perib, Thanks for the reply. In Tpot, I could track experiments from the checkpoint folder. But while fitting a TPOT object, I do not know how to access the individual generation models to log them as .pkl files and calculate the metrics from them. Any help with this will be greatly appreciated. |
@perib I can take a look at this if you want. I have not contributed to this project but it seems like a good issue to get into it. |
sorry the delay in getting back to you. So I answered a similar question in this issue, and I'll copy my answer here Here are the models that you are able to access.
We are currently working on TPOT2 where you can more easily access all evaluated pipelines without workarounds. However, like in TPOT1, we do not train all pipelines on the full dataset so these pipelines are unfitted. Example here: In TPOT2, we save all individuals evaluated along with their scores to a dataframe that can be accessed with TPOT2 also allows for (multiple) custom objective functions if you want to use custom metrics. |
You can find latest stable version of TPOT2 here: https://github.com/EpistasisLab/tpot2/tree/main Though this branch is the most up to date, with a better API for defining search spaces, but still needs to be reviewed : https://github.com/EpistasisLab/tpot2/tree/search_space_api |
Hi,
This is Chakri, I want to use TPOT with MLFLOW to track the model and to log the parameters and dependencies. I was unable to do so and it would really help me if you could provide me with some assistance.
Thanks in advance.
The text was updated successfully, but these errors were encountered: