MLFlow

모델 구조

MLflow 모델은 아래와 같은 구조를 가집니다.

# https://mlflow.org/docs/latest/models.html#mlmodel-file
my_model/
├── MLmodel
├── model.pkl
├── conda.yaml
├── python_env.yaml
└── requirements.txt

모델에 관한 더 자세한 내용은 아래 페이지를 참고해주시기 바랍니다: https://mlflow.org/docs/latest/models.html

환경

BentoML 배포 환경에서는 buildpack-deps:jammy (Ubuntu 22.04) 기반으로 Python 3.10 버전을 사용합니다. 압축 해제된 모델은 /user/model 에 위치하게 됩니다.

예시 프로젝트

MLflow에서 다양한 예시 프로젝트를 제공하므로, 아래 예시를 참조하여 모델을 생성할 수 있습니다.

Last updated