forked from h2oai/h2o-2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
GLMGrid.jsonschema
28 lines (27 loc) · 982 Bytes
/
GLMGrid.jsonschema
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
{
"type": "object",
"properties":{
"computation_time": { "type": "string" },
"destination_key": { "type": "string" },
"models": { "type": "array", "items":
{ "type": "object", "properties":{
"alpha": { "type": "number" },
"area_under_curve": { "type": "number" },
"best_threshold": { "type": "number" },
"error_0": { "type": "number" },
"error_1": { "type": "number" },
"key": { "type": "string" },
"lambda": { "type": "number" },
"warnings": { "type": "array" }
}
}
},
"response": { "type": "object", "properties":{
"h2o": { "type": "string" },
"node": { "type": "string" },
"status": { "type": "string" },
"time": { "type": "number" }
}
}
}
}