github.com/pachyderm/pachyderm@v1.13.4/examples/ml/iris/julia_infer.json (about) 1 { 2 "pipeline": { 3 "name": "inference" 4 }, 5 "description": "An inference pipeline that makes a prediction based on the trained model by using a Julia script.", 6 "transform": { 7 "image": "pachyderm/iris-infer:julia", 8 "cmd": [ 9 "julia", 10 "/infer.jl", 11 "/pfs/model/model.jld", 12 "/pfs/attributes/", 13 "/pfs/out/" 14 ] 15 }, 16 "parallelism_spec": { 17 "constant": "5" 18 }, 19 "input": { 20 "cross": [ 21 { 22 "pfs": { 23 "repo": "attributes", 24 "glob": "/*" 25 } 26 }, 27 { 28 "pfs": { 29 "repo": "model", 30 "glob": "/" 31 } 32 } 33 ] 34 } 35 }