github.com/pachyderm/pachyderm@v1.13.4/examples/ml/housing-prices/regression.json (about) 1 { 2 "pipeline": { 3 "name": "regression" 4 }, 5 "description": "A pipeline that trains produces a regression model for housing prices.", 6 "input": { 7 "pfs": { 8 "glob": "/*", 9 "repo": "housing_data" 10 } 11 }, 12 "transform": { 13 "cmd": [ 14 "python", "regression.py", 15 "--input", "/pfs/housing_data/", 16 "--target-col", "MEDV", 17 "--output", "/pfs/out/" 18 ], 19 "image": "pachyderm/housing-prices:1.11.0" 20 } 21 }