/ examples / docker / MLproject
MLproject
 1  name: docker-example
 2  
 3  docker_env:
 4    image:  mlflow-docker-example
 5  
 6  entry_points:
 7    main:
 8      parameters:
 9        alpha: float
10        l1_ratio: {type: float, default: 0.1}
11      command: "python train.py --alpha {alpha} --l1-ratio {l1_ratio}"