प्रोडक्शन के लिए मशीन लर्निंग मॉडल विकसित करना
Sinan Ozdemir
Data Scientist, Entrepreneur, and Author
दो तरह की वर्ज़निंग: major और minor


Major/Minor वर्ज़न से आप देख सकते हैं कि डेटा या मॉडल में क्या और कैसे बदलाव हुए
उदाहरण:
उदाहरण:
import mlflow
# Start a new mlflow run
with mlflow.start_run() as run:
# Log model version as a parameter
mlflow.log_param("model_version", "1.0")
# Train and save the model
model = train_model()
mlflow.sklearn.log_model(model, "model")
प्रोडक्शन के लिए मशीन लर्निंग मॉडल विकसित करना