Home > Enterprise >  How to separate development and production requirements.txt for Machine Learning Project?
How to separate development and production requirements.txt for Machine Learning Project?

Time:10-13

I'm looking for a better AI/ML project code structure. I know that this

Poerty creates a project.toml file when project is initialized. This can serve as requirement.txt file for production.You can add production and development package separately in this file using command line or editing the file.

Project.toml this

It also creates separate environment for the project which helps in minimizing the conflict with other project.

  • Related