Experiment 생성
mlflow experiments create --experiment-name my-first-experiment폴더 생성 후 머신러닝 코드 작성.
같은 폴더 내에 MLProject 생성
name: tutorial
entry_points:
main:
command: "python train.py"
Run으로 학습 실행 및 로깅
mlflow run logistic_regression --experiment-name my-first-experiment --no-conda실험정보 확인
mlflow ui