File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed
tests/unit/artifact_schemas Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "$id" : " https://amazon.com/sagemaker.graph.schema.json" ,
3+ "$schema" : " http://json-schema.org/draft-07/schema#" ,
4+ "title" : " Confusion Matrix" ,
5+ "type" : " object" ,
6+ "description" : " Describes serialized confusion matrix data in json format." ,
7+ "properties" : {
8+ "type" : {
9+ "description" : " Constant value that provides an indicator on how to interpret this data." ,
10+ "const" : " ConfusionMatrix"
11+ },
12+ "version" : {
13+ "description" : " Version of the schema" ,
14+ "const" : " 0"
15+ },
16+ "title" : {
17+ "description" : " Title of the plot" ,
18+ "type" : " string"
19+ },
20+ "confusionMatrix" : {
21+ "description" : " The confusion matrix data." ,
22+ "type" : " array" ,
23+ "items" : {
24+ "type" : " array"
25+ }
26+ },
27+ "labels" : {
28+ "description" : " Class labels." ,
29+ "type" : " array" ,
30+ "items" : {
31+ "type" : " string"
32+ }
33+ }
34+ },
35+ "additionalProperties" : false
36+ }
You can’t perform that action at this time.
0 commit comments