-
Notifications
You must be signed in to change notification settings - Fork 2
/
Example_Model_Config.json
45 lines (45 loc) · 1.13 KB
/
Example_Model_Config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{"variables": [
{
"valueType": "numerical",
"variableType": "feature",
"name": "petal.length"
},
{
"valueType": "numerical",
"variableType": "feature",
"name": "sepal.length"
},
{
"valueType": "numerical",
"variableType": "feature",
"name": "petal.width"
},
{
"valueType": "numerical",
"variableType": "feature",
"name": "sepal.width"
},
{
"valueType": "categorical",
"variableType": "prediction",
"name": "variety"
}
],
"datasetDetails": {
"name": "iris.csv",
"datasetType": "file",
"datasetConfig": {
"path": "iris.csv",
"fileFormat": "csv"
},
"datasourceName": "dmm-shared-bucket",
"datasourceType": "s3"
},
"modelMetadata": {
"name": "iris_model",
"modelType": "classification",
"version": "1.01",
"description": "classification_iris_model",
"author": "John Doe"
}
}