github.com/pachyderm/pachyderm@v1.13.4/examples/ml/iris/julia_train.json (about) 1 { 2 "pipeline": { 3 "name": "model" 4 }, 5 "description": "A pipeline that trains the model based on the data in the `training` repository by using a Julia script.", 6 "transform": { 7 "image": "pachyderm/iris-train:julia-tree", 8 "cmd": [ 9 "julia", 10 "/train.jl", 11 "/pfs/training/iris.csv", 12 "/pfs/out/model.jld" 13 ] 14 }, 15 "parallelism_spec": { 16 "constant": "1" 17 }, 18 "input": { 19 "pfs": { 20 "repo": "training", 21 "glob": "/" 22 } 23 } 24 }