Created
February 22, 2019 08:17
-
-
Save jaor/309f52c9483c269edce5b35366116e89 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "Model and eval input data", | |
| "kind": "script", | |
| "description": "Take a dataset, split, train and eval", | |
| "source_code": "script.whizzml", | |
| "imports":[ | |
| "dataset"], | |
| "inputs":[ | |
| { | |
| "name": "dataset", | |
| "type": "dataset-id", | |
| "description": "Data for training and evaluation" | |
| }], | |
| "outputs":[ | |
| { | |
| "name": "evaluation", | |
| "type": "evaluation-id", | |
| "description": "Evaluation over training dataset" | |
| }, | |
| { | |
| "name": "model", | |
| "type": "model-id", | |
| "description": "Model over test dataset" | |
| }] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment