github.com/pachyderm/pachyderm@v1.13.4/examples/ml/iris/rstats_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 an R script.", 6 "transform": { 7 "image": "pachyderm/iris-infer:rstats", 8 "cmd": [ 9 "Rscript", 10 "infer.R" 11 ] 12 }, 13 "parallelism_spec": { 14 "constant": "1" 15 }, 16 "input": { 17 "cross": [ 18 { 19 "pfs": { 20 "repo": "attributes", 21 "glob": "/*" 22 } 23 }, 24 { 25 "pfs": { 26 "repo": "model", 27 "glob": "/" 28 } 29 } 30 ] 31 } 32 }