github.com/pachyderm/pachyderm@v1.13.4/examples/ml/iris/rstats_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 an R script.", 6 "transform": { 7 "image": "pachyderm/iris-train:rstats-svm", 8 "cmd": [ 9 "Rscript", 10 "train.R" 11 ] 12 }, 13 "parallelism_spec": { 14 "constant": "1" 15 }, 16 "input": { 17 "pfs": { 18 "repo": "training", 19 "glob": "/" 20 } 21 } 22 }