github.com/pachyderm/pachyderm@v1.13.4/examples/ml/neon/train.json (about) 1 { 2 "pipeline": { 3 "name": "model" 4 }, 5 "description": "A pipeline that uses the data in the `training` repository to train the model.", 6 "transform": { 7 "image": "kaixhin/neon", 8 "cmd": [ 9 "python", 10 "examples/imdb/train.py", 11 "-f", 12 "/pfs/training/labeledTrainData.tsv", 13 "-e", 14 "2", 15 "-eval", 16 "1", 17 "-s", 18 "/pfs/out/imdb.p", 19 "--vocab_file", 20 "/pfs/out/imdb.vocab" 21 ] 22 }, 23 "parallelism_spec": { 24 "constant": "1" 25 }, 26 "input": { 27 "pfs": { 28 "repo": "training", 29 "glob": "/" 30 } 31 } 32 }