ium_487194/MLproject.yml

16 lines
282 B
YAML
Raw Normal View History

2023-05-14 18:11:11 +02:00
name: s487194
docker_env:
image: s487194/ium:1
entry_points:
2023-05-14 18:13:25 +02:00
train:
2023-05-14 18:11:11 +02:00
parameters:
epochs: {type: int, default: 100}
lr: {type: float, default: 0.01}
command: "python train.py --epochs {epochs} --lr {lr}"
2023-05-14 18:13:25 +02:00
2023-05-14 18:11:11 +02:00
test:
command: "python prediction.py"