forked from h2oai/h2o-2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
from an example response. useful for test writing.
- Loading branch information
Kevin Normoyle
committed
May 17, 2014
1 parent
bf46284
commit 8cf203c
Showing
1 changed file
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
|
||
{ | ||
"type":"object", "properties": { | ||
"AUC": { "type":"number" }, | ||
"F0point5_for_criteria": { "type":"array", "items": { "type":"number" } }, | ||
"F0point5": { "type":"array", "items": { "type":"number" } }, | ||
"F1_for_criteria": { "type":"array", "items": { "type":"number" } }, | ||
"F1": { "type":"array", "items": { "type":"number" } }, | ||
"F2_for_criteria": { "type":"array", "items": { "type":"number" } }, | ||
"F2": { "type":"array", "items": { "type":"number" } }, | ||
"Gini": { "type":"number" }, | ||
"Request2": { "type":"number" }, | ||
"accuracy_for_criteria": { "type":"array", "items": { "type":"number" } }, | ||
"accuracy": { "type":"array", "items": { "type":"number" } }, | ||
"actual_domain": { "type":"array", "items": { "type":"string" } }, | ||
"actual": { "type":"object", "properties": { | ||
"_key": { "type":"string" } } | ||
}, | ||
"confusion_matrices": { "type":"array", "items": { "type":"array" } }, | ||
"confusion_matrix_for_criteria": { "type":"array", "items": { "type":"array" } }, | ||
"error_for_criteria": { "type":"array", "items": { "type":"number" } }, | ||
"error": { "type":"array", "items": { "type":"number" } }, | ||
"max_per_class_error_for_criteria": { "type":"array", "items": { "type":"number" } }, | ||
"max_per_class_error": { "type":"array", "items": { "type":"number" } }, | ||
"precision_for_criteria": { "type":"array", "items": { "type":"number" } }, | ||
"precision": { "type":"array", "items": { "type":"number" } }, | ||
"predict": { "type":"object", "properties": { | ||
"_key": { "type":"string" } } | ||
}, | ||
"recall_for_criteria": { "type":"array", "items": { "type":"number" } }, | ||
"recall": { "type":"array", "items": { "type":"number" } }, | ||
"response_info": { | ||
"type":"object", | ||
"properties": { | ||
"h2o": { "type":"string" }, | ||
"node": { "type":"string" }, | ||
"redirect_url": { "type":"string" }, | ||
"status": { "type":"string" }, | ||
"time": { "type":"number" } | ||
} | ||
}, | ||
"specificity_for_criteria": { "type":"array", "items": { "type":"number" } }, | ||
"specificity": { "type":"array", "items": { "type":"number" } }, | ||
"threshold_criteria": { "type":"array", "items": { "type":"string" } }, | ||
"threshold_criterion": { "type":"string" }, | ||
"threshold_for_criteria": { "type":"array", "items": { "type":"number" } }, | ||
"thresholds": { "type":"array", "items": { "type":"number" } }, | ||
"vactual": { "type":"object" }, | ||
"vpredict": { "type":"object" } | ||
} | ||
} | ||
|