프로덕션을 위한 Machine Learning 모델 개발
Sinan Ozdemir
Data Scientist, Entrepreneur, and Author
버전은 두 가지: 메이저와 마이너


메이저/마이너 버전으로 변경 내용과 범위를 파악할 수 있습니다
예시:
예시:
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")
프로덕션을 위한 Machine Learning 모델 개발