-
Notifications
You must be signed in to change notification settings - Fork 4
/
MLproject
31 lines (28 loc) · 962 Bytes
/
MLproject
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Author: Lukas Heumos
# Email: [email protected]
# Version: 1.0.1
# License: MIT
name: lcep
# conda_env: environment.yml
docker_env:
image: ghcr.io/mlf-core/lcep:1.0.1
volumes: ["${PWD}/data:/data"]
entry_points:
main:
parameters:
cuda: {type: string, default: 'True'}
max_epochs: {type: int, default: 25}
general-seed: {type: int, default: 0}
xgboost-seed: {type: int, default: 0}
single-precision-histogram: {type: string, default: 'True'}
training-data: {type: string, default: 'train.tsv'}
test-data: {type: string, default: 'test.tsv'}
command: |
python lcep/lcep.py \
--cuda {cuda} \
--max_epochs {max_epochs} \
--general-seed {general-seed} \
--xgboost-seed {xgboost-seed} \
--single-precision-histogram {single-precision-histogram} \
--training-data {training-data} \
--test-data {test-data} \