โ11-24-2021 06:21 AM
Hi all,
We are constructing our CI/CD pipelines with the Repos feature following this guide:
I'm trying to implement my pipes for models that haven't been trained with the MLFlow paradigm. The code promotion with repos is the same as explained in the link.
However, the model artifact, that is, the serialized file that contains the trained model
on MLFlow travels from its own infrastructure (the MLFlow artifact version control). It points either to the DB FileStore or any other storage previously set.
WITHOUT the MLFlow scheme: what are good practices for promoting the Model Artifact ? Here are my thoughts:
I'm really confused about the solution.
โ01-05-2022 07:14 PM
So you are managing your models with MLflow, and want to include them in a git repository?
You can do that in a CI/CD process; it would run the mlflow CLI to copy the model you want (e.g. model:/my_model/production) to a git checkout and then commit it, perhaps.
You can also treat MLflow as the 'source control' at runtime and have the production jobs refer to and access the latest model from MLflow directly.
Maybe I don't understand what you're trying to achieve here and you can clarify.
โ12-01-2021 03:42 AM
Hi, thanks @Kaniz Fatmaโ, is there any advice you can give me for this particular problem?
โ12-09-2021 02:19 PM
@Rodrigo Maranzanaโ - Thank you for your patience. I am looking for someone to help you.
โ01-05-2022 07:14 PM
So you are managing your models with MLflow, and want to include them in a git repository?
You can do that in a CI/CD process; it would run the mlflow CLI to copy the model you want (e.g. model:/my_model/production) to a git checkout and then commit it, perhaps.
You can also treat MLflow as the 'source control' at runtime and have the production jobs refer to and access the latest model from MLflow directly.
Maybe I don't understand what you're trying to achieve here and you can clarify.
Passionate about hosting events and connecting people? Help us grow a vibrant local communityโsign up today to get started!
Sign Up Now