forked from OHF-Voice/piper1-gpl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmemory_valid.json
More file actions
186 lines (186 loc) · 4.19 KB
/
memory_valid.json
File metadata and controls
186 lines (186 loc) · 4.19 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
[
{
"type": "entity",
"name": "John Doe",
"entityType": "Person",
"observations": [
"Initial observation"
]
},
{
"type": "entity",
"name": "Piper TTS",
"observations": [
"A fast, local neural text to speech engine."
],
"entityType": "Project"
},
{
"type": "entity",
"name": "pip install .",
"entityType": "Build Process",
"observations": [
"The user-facing command to trigger the automated build process."
]
},
{
"type": "entity",
"observations": [
"Used alongside CMake to build the Python module."
],
"name": "scikit-build-core",
"entityType": "Build Tool"
},
{
"type": "entity",
"observations": [
"The core build system used to compile native code."
],
"name": "CMake",
"entityType": "Build Tool"
},
{
"type": "entity",
"entityType": "Configuration File",
"observations": [
"Automates the handling of native dependencies in Termux.",
"Clones and builds espeak-ng from source.",
"Manages the installation of system packages like python-onnxruntime.",
"Copies espeak-ng-data to the final package location."
],
"name": "CMakeLists.txt"
},
{
"type": "entity",
"name": "espeak-ng",
"observations": [
"A text-to-speech synthesizer used for phonemization.",
"It is cloned and compiled from source during the build.",
"Provides the crucial `espeak_TextToPhonemesWithTerminator` function."
],
"entityType": "Dependency"
},
{
"type": "entity",
"observations": [
"The machine learning model runtime.",
"Handled by installing the `python-onnxruntime` package in Termux."
],
"entityType": "Dependency",
"name": "ONNX Runtime"
},
{
"type": "entity",
"entityType": "Component",
"observations": [
"A C extension that acts as a bridge between Python and espeak-ng.",
"Compiled into `piper.espeakbridge`."
],
"name": "espeakbridge.c"
},
{
"type": "entity",
"entityType": "Component",
"observations": [
"The mechanism in setup.py used to define and compile the `espeakbridge.c` C extension."
],
"name": "setuptools.Extension"
},
{
"type": "entity",
"observations": [
"The target Android environment for which the automated build is designed."
],
"name": "Termux",
"entityType": "Environment"
},
{
"type": "entity",
"entityType": "Component",
"observations": [
"Data files required by espeak-ng.",
"Copied into the final package location via a PRE_BUILD command in CMake."
],
"name": "espeak-ng-data"
},
{
"type": "entity",
"observations": [
"The person initiating the build process."
],
"name": "User",
"entityType": "Actor"
},
{
"type": "relation",
"relationType": "INITIATES",
"to": "pip install .",
"from": "User"
},
{
"type": "relation",
"from": "pip install .",
"to": "CMake",
"relationType": "TRIGGERS"
},
{
"type": "relation",
"to": "CMakeLists.txt",
"relationType": "IS_CONFIGURED_BY",
"from": "CMake"
},
{
"type": "relation",
"from": "CMakeLists.txt",
"to": "espeak-ng",
"relationType": "MANAGES_DEPENDENCY"
},
{
"type": "relation",
"from": "CMakeLists.txt",
"relationType": "MANAGES_DEPENDENCY",
"to": "ONNX Runtime"
},
{
"type": "relation",
"to": "espeak-ng-data",
"from": "CMakeLists.txt",
"relationType": "COPIES"
},
{
"type": "relation",
"relationType": "COMPILES",
"from": "CMake",
"to": "espeakbridge.c"
},
{
"type": "relation",
"relationType": "IS_DEFINED_AS_A",
"from": "espeakbridge.c",
"to": "setuptools.Extension"
},
{
"type": "relation",
"relationType": "BRIDGES",
"from": "espeakbridge.c",
"to": "espeak-ng"
},
{
"type": "relation",
"relationType": "ENABLES",
"from": "espeakbridge.c",
"to": "Piper TTS"
},
{
"type": "relation",
"to": "Termux",
"relationType": "IS_BUILT_IN",
"from": "Piper TTS"
},
{
"type": "relation",
"relationType": "USES_TOOL",
"from": "Piper TTS",
"to": "scikit-build-core"
}
]