-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
datapackage.json
110 lines (110 loc) · 2.8 KB
/
datapackage.json
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
102
103
104
105
106
107
108
109
110
{
"name": "stdlib-datasets-cmudict",
"version": "",
"title": "The Carnegie Mellon Pronouncing Dictionary",
"description": "Data of the Carnegie Mellon Pronouncing Dictionary (CMUdict).",
"resources": [
{
"name": "dict-json",
"title": "Pronouncing Dictionary",
"description": "Main pronouncing dictionary.",
"format": "json",
"mediatype": "application/json",
"encoding": "UTF-8",
"hash": "",
"path": "./data/dict.json"
},
{
"name": "dict-txt",
"title": "Pronouncing Dictionary",
"description": "Main pronouncing dictionary.",
"format": "text",
"mediatype": "plain/text",
"encoding": "UTF-8",
"hash": "",
"path": "./data/dict.txt"
},
{
"name": "phones-json",
"title": "Articulation Manners",
"description": "Manners of articulation for each sound.",
"format": "json",
"mediatype": "application/json",
"encoding": "UTF-8",
"hash": "",
"path": "./data/phones.json"
},
{
"name": "phones-txt",
"title": "Articulation Manners",
"description": "Manners of articulation for each sound.",
"format": "text",
"mediatype": "plain/text",
"encoding": "UTF-8",
"hash": "",
"path": "./data/phones.txt"
},
{
"name": "symbols-json",
"title": "ARPABET symbols",
"description": "Complete list of ARPABET symbols used by the dictionary.",
"format": "json",
"mediatype": "application/json",
"encoding": "UTF-8",
"hash": "",
"path": "./data/symbols.json"
},
{
"name": "symbols-txt",
"title": "ARPABET symbols",
"description": "Complete list of ARPABET symbols used by the dictionary.",
"format": "text",
"mediatype": "plain/text",
"encoding": "UTF-8",
"hash": "",
"path": "./data/symbols.txt"
},
{
"name": "vp-json",
"title": "Verbal Pronunciations",
"description": "Verbal pronunciations of punctuation marks.",
"format": "json",
"mediatype": "application/json",
"encoding": "UTF-8",
"hash": "",
"path": "./data/vp.json"
},
{
"name": "vp-txt",
"title": "Verbal Pronunciations",
"description": "Verbal pronunciations of punctuation marks.",
"format": "text",
"mediatype": "plain/text",
"encoding": "UTF-8",
"hash": "",
"path": "./data/vp.txt"
}
],
"sources": [
{
"name": "The CMU Pronouncing Dictionary",
"web": "http://www.speech.cs.cmu.edu/cgi-bin/cmudict#about"
}
],
"keywords": [
"stdlib",
"datasets",
"dataset",
"data",
"words",
"speech",
"language",
"nlp",
"spelling",
"pronounciation",
"dictionary",
"english",
"en"
],
"license": "BSD-2-Clause"
}