forked from h2oai/h2o-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglm2.jsonschema
102 lines (101 loc) · 4.37 KB
/
glm2.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"type": "object", "properties":{
"Request2": {
"type": "number",
},
"glm_model": {
"type": "object", "properties": {
"_caseMode": { "type": "string" },
"_caseVal": { "type": "number" },
"_dataKey": { "type": "string" },
"_domains": { "type": "array", "items":
{ "type": "string" }
},
"_names": { "type": "array", "items":
{ "type": "string" }
},
"_key": { "type": "string",
},
"alpha": { "type": "number" },
"best_lambda_idx": { "type": "number" }
"beta_eps": { "type": "number" },
"coefficient_names": { "type": "array", "items":
{ "type": "string" }
},
"data_info": { "type": "null" },
"glm": {
"type": "object", "properties": {
"family": { "type": "string" },
"link": { "type": "string" },
"tweedie_link_power": { "type": "number" },
"tweedie_variance_power": { "type": "number" }
}
},
"job_key": { "type": "string" },
"lambdas": { "type": "array", "items":
{ "type": "number" }
},
"run_time": { "type": "number" },
"start_time": { "type": "number" },
"submodels": { "type": "array", "items": {
"type": "object", "properties": {
"beta": { "type": "array", "items":
{ "type": "number" }
},
"norm_beta": { "type": "array", "items":
{ "type": "number" }
},
"idxs": { "type": "array", "items":
{ "type": "number" }
},
"iteration": { "type": "number" },
"lambda": { "type": "number" },
"run_time": { "type": "number", },
"validation": { "type": "object", "properties": {
"_aic2": { "type": "number" },
"_cms": { "type": "array", "items": {
"type": "object", "properties": {
"_arr": { "type": "array", "items":
{ "type": "array" }
}
}
}
},
"_glm": { "type": "object", "properties": {
"family": { "type": "string" },
"link": { "type": "string" },
"tweedie_link_power": { "type": "number" },
"tweedie_variance_power": { "type": "number" }
}
},
"_rank": { "type": "number" },
"_ymu": { "type": "number" },
"aic": { "type": "number" },
"auc": { "type": "number" },
"avg_err": { "type": "number" },
"best_threshold": { "type": "number" },
"dataKey": { "type": "string" },
"nobs": { "type": "number" },
"null_deviance": { "type": "number" },
"residual_deviance": { "type": "number" }
}
}
}
}
},
"threshold": { "type": "number" },
"warnings": { "type": "string" },
"ymu": { "type": "number" }
}
},
"response_info": { "type": "object",
"properties":{
"h2o": { "type": "string" },
"node": { "type": "string" },
"redirect_url": { "type": "string" },
"status": { "type": "string" },
"time": { "type": "number" }
}
}
}
}