-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathjson_log_schema.json
More file actions
98 lines (98 loc) · 3.15 KB
/
json_log_schema.json
File metadata and controls
98 lines (98 loc) · 3.15 KB
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
{
"definitions": {
"transcript_wer": {
"title": "Transcript WER",
"type": "object",
"properties": {
"wer": {
"title": "WER",
"type": "object",
"properties": {
"bestWER": "#/definitions/wer_result",
"classWER": {
<class_id>: "#/definitions/wer_result"
},
"speakerWER": {
<speaker_id>: "#/definitions/wer_result"
},
"speakerSwitchWER": "#/definitions/wer_result",
"unigrams": {
<unigram_text>: "#/definitions/pr_result"
},
"bigrams": {
<bigram_text>: "#/definitions/pr_result"
}
}
}
}
},
"wer_result": {
"title": "WER Result",
"type": "object",
"properties": {
"insertions": {
"title": "Insertions",
"type": "integer"
},
"deletions": {
"title": "Deletions",
"type": "integer"
},
"substitutions": {
"title": "Substitutions",
"type": "integer"
},
"numErrors": {
"title": "Number of errors",
"type": "integer"
},
"numWordsInReference": {
"title": "Number of words in reference",
"type": "integer"
},
"wer": {
"title": "WER",
"type": "float"
},
"meta": {
"title": "Metadata",
"type": "object"
},
},
},
"pr_result": {
"title": "Precision Recall Result",
"type": "object",
"properties": {
"insertions": {
"title": "Insertions",
"type": "integer"
},
"deletions": {
"title": "Deletions",
"type": "integer"
},
"substitutions_fp": {
"title": "Substitutions that were false positives.",
"type": "integer"
},
"substitutions_fn": {
"title": "Substitutions that were false negatives.",
"type": "integer"
},
"correct": {
"title": "Correct",
"type": "integer"
},
"precision": {
"title": "Precision",
"type": "float"
},
"recall": {
"title": "Recall",
"type": "float"
}
}
}
}
}