github.com/pachyderm/pachyderm@v1.13.4/examples/ml/iris/python_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 Python script.", 6 "transform": { 7 "image": "pachyderm/iris-train:python-svm", 8 "cmd": [ 9 "python3", 10 "/code/pytrain.py", 11 "/pfs/training/", 12 "/pfs/out/" 13 ] 14 }, 15 "parallelism_spec": { 16 "constant": "1" 17 }, 18 "input": { 19 "pfs": { 20 "repo": "training", 21 "glob": "/" 22 } 23 } 24 }