thoratsr7 ysdede commited on
Commit
23ce103
·
0 Parent(s):

Duplicate from ysdede/parakeet-realtime-eou-120m-v1-onnx

Browse files

Co-authored-by: Yunus Dede <ysdede@users.noreply.huggingface.co>

.gitattributes ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ *.onnx filter=lfs diff=lfs merge=lfs -text
2
+ *.onnx.data filter=lfs diff=lfs merge=lfs -text
3
+ *.data filter=lfs diff=lfs merge=lfs -text
4
+ voice-agent.png filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,182 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ license_name: nvidia-open-model-license
4
+ license_link: https://www.nvidia.com/en-us/agreements/enterprise-software/nvidia-open-model-license/
5
+ language:
6
+ - en
7
+ library_name: asrjs/speech-recognition
8
+ pipeline_tag: automatic-speech-recognition
9
+ tags:
10
+ - automatic-speech-recognition
11
+ - speech
12
+ - audio
13
+ - onnx
14
+ - onnxruntime
15
+ - asrjs
16
+ - asrjs/speech-recognition
17
+ - nemo
18
+ - NeMo
19
+ - FastConformer
20
+ - RNNT
21
+ - streaming-asr
22
+ - eou
23
+ - end-of-utterance
24
+ - parakeet
25
+ - voice-agent
26
+ base_model: nvidia/parakeet_realtime_eou_120m-v1
27
+ models:
28
+ - nvidia/parakeet_realtime_eou_120m-v1
29
+ widget:
30
+ - example_title: Librispeech sample 1
31
+ src: https://cdn-media.huggingface.co/speech_samples/sample1.flac
32
+ - example_title: Librispeech sample 2
33
+ src: https://cdn-media.huggingface.co/speech_samples/sample2.flac
34
+ ---
35
+
36
+ # Parakeet Realtime EOU 120M v1 ONNX
37
+
38
+ Converted ONNX package of [`nvidia/parakeet_realtime_eou_120m-v1`](https://huggingface.co/nvidia/parakeet_realtime_eou_120m-v1) for use with [`@asrjs/speech-recognition`](https://github.com/asrjs/speech-recognition).
39
+
40
+ This repository is not the original NVIDIA training checkpoint repo. It contains exported runtime artifacts for browser and Node.js inference.
41
+
42
+ ## Included Artifacts
43
+
44
+ - `encoder-model.onnx`
45
+ - `decoder_joint-model.onnx`
46
+ - `encoder-model.fp16.onnx`
47
+ - `decoder_joint-model.fp16.onnx`
48
+ - `encoder-model.int8.onnx`
49
+ - `decoder_joint-model.int8.onnx`
50
+ - `vocab.txt`
51
+ - `config.json`
52
+
53
+ ## Model Summary
54
+
55
+ Parakeet Realtime EOU 120M v1 is a streaming English ASR model with:
56
+
57
+ - cache-aware FastConformer encoder
58
+ - RNNT decoder
59
+ - explicit `<EOU>` token emission for end-of-utterance detection
60
+ - low-latency voice-agent-oriented output
61
+
62
+ The model:
63
+
64
+ - supports English only
65
+ - does not emit punctuation or capitalization
66
+ - may emit empty visible text for non-speech audio
67
+ - keeps `<EOU>` in raw/native output while user-visible text should strip it
68
+
69
+ Architecture details:
70
+
71
+ - FastConformer-RNNT
72
+ - 17 encoder layers
73
+ - about 120M parameters
74
+
75
+ ## Frontend / Preprocessing
76
+
77
+ The upstream model expects raw 16 kHz mono audio and uses a NeMo mel frontend internally.
78
+
79
+ For `@asrjs/speech-recognition`, this ONNX package is intended to run with the shared in-repo JavaScript NeMo frontend. A dedicated `nemo80.onnx` or `nemo128.onnx` preprocessor is intentionally not required.
80
+
81
+ Frontend assumptions:
82
+
83
+ - sample rate: `16000`
84
+ - mono audio
85
+ - mel bins: `128`
86
+ - valid length mode: `centered`
87
+ - frontend output: raw log-mel features
88
+
89
+ This matters: this model does **not** use the normalized `nemo128` frontend contract reused by some other NeMo exports.
90
+
91
+ ## Quantization Notes
92
+
93
+ Included variants:
94
+
95
+ - FP32
96
+ - FP16
97
+ - INT8 encoder
98
+ - INT8 decoder
99
+
100
+ Port validation summary on the smoke fixture:
101
+
102
+ - FP32: exact token/text/raw-text parity
103
+ - FP16: exact token/text/raw-text parity
104
+ - decoder-only INT8: exact token/text/raw-text parity
105
+ - encoder-only INT8: not exact
106
+ - full `int8/int8`: not exact
107
+
108
+ Recommended default pairings:
109
+
110
+ - `fp32/fp32`
111
+ - `fp16/fp16`
112
+ - `fp32/int8` if you specifically want decoder-only INT8
113
+
114
+ ## Usage with `@asrjs/speech-recognition`
115
+
116
+ ### Preset usage
117
+
118
+ ```ts
119
+ import { createSpeechPipeline, PcmAudioBuffer } from '@asrjs/speech-recognition';
120
+
121
+ const pipeline = createSpeechPipeline({ cacheModels: true });
122
+
123
+ const loaded = await pipeline.loadModel({
124
+ preset: 'parakeet',
125
+ modelId: 'nvidia/parakeet_realtime_eou_120m-v1',
126
+ backend: 'wasm',
127
+ });
128
+
129
+ const audio = PcmAudioBuffer.fromMono(pcmFloat32, 16000);
130
+ const result = await loaded.transcribe(audio, {
131
+ detail: 'detailed',
132
+ responseFlavor: 'canonical+native',
133
+ });
134
+
135
+ console.log(result.canonical.text);
136
+ console.log(result.native.rawUtteranceText);
137
+ ```
138
+
139
+ ### Direct source usage
140
+
141
+ ```ts
142
+ const loaded = await pipeline.loadModel({
143
+ family: 'nemo-rnnt',
144
+ modelId: 'nvidia/parakeet_realtime_eou_120m-v1',
145
+ backend: 'wasm',
146
+ options: {
147
+ source: {
148
+ kind: 'huggingface',
149
+ repoId: 'ysdede/parakeet-realtime-eou-120m-v1-onnx',
150
+ preprocessorBackend: 'js',
151
+ encoderQuant: 'fp32',
152
+ decoderQuant: 'fp32',
153
+ },
154
+ },
155
+ });
156
+ ```
157
+
158
+ ## Voice-Agent Context
159
+
160
+ The original model card highlights voice-agent usage, especially streaming end-of-utterance detection.
161
+
162
+ <div align="center">
163
+ <img src="./figure-streaming.png" width="450" />
164
+ </div>
165
+
166
+ <div align="center">
167
+ <img src="./voice-agent.png" width="750" />
168
+ </div>
169
+
170
+ ## Upstream Model and License
171
+
172
+ Original model:
173
+
174
+ - [`nvidia/parakeet_realtime_eou_120m-v1`](https://huggingface.co/nvidia/parakeet_realtime_eou_120m-v1)
175
+
176
+ This converted package follows the upstream **NVIDIA Open Model License** terms.
177
+
178
+ ## References
179
+
180
+ - [Fast Conformer With Linearly Scalable Attention For Efficient Speech Recognition](https://arxiv.org/abs/2305.05084)
181
+ - [Stateful Conformer with Cache-based Inference for Streaming Automatic Speech Recognition](https://arxiv.org/abs/2312.17279)
182
+ - [NVIDIA NeMo](https://github.com/NVIDIA/NeMo)
config.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_id": "nvidia/parakeet_realtime_eou_120m-v1",
3
+ "sample_rate": 16000,
4
+ "mel_bins": 128,
5
+ "frame_shift_seconds": 0.01,
6
+ "subsampling_factor": 8,
7
+ "vocab_size": 1026,
8
+ "blank_id": 1026,
9
+ "eou_id": 1024,
10
+ "eob_id": 1025,
11
+ "pred_hidden": 640,
12
+ "pred_layers": 1,
13
+ "max_symbols_per_step": 10
14
+ }
decoder_joint-model.fp16.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e76d84f4f8e46a8ea38581964235850e500e16591f76619727d0ee61b71092a9
3
+ size 10679601
decoder_joint-model.int8.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5464333fa933bf2c60952c08f01f5b5dd3fe3176e1c70d3eeddb48412514a0f9
3
+ size 5368692
decoder_joint-model.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:50d355bc769420c506b2268ca3abe34f63dcaeb0ce0fdab80034248ea2a0ef88
3
+ size 21348923
encoder-model.fp16.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:637ab309917f9ad3d3569f8294451750ebd1f0443a273a64dc31d1b4a3c8f429
3
+ size 230121472
encoder-model.int8.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7c13202b4a1939e88f62054b7db02839d2fb18b8f7f694a0d4f224b3532e9465
3
+ size 131479377
encoder-model.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:45c8e0b973fbd7e523308d058336bc1054ca05a66b215b5fa629ec17250bf7b8
3
+ size 459170470
figure-streaming.png ADDED
vocab.txt ADDED
@@ -0,0 +1,1026 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <unk>
2
+ ▁t
3
+ ▁th
4
+ ▁a
5
+ ▁i
6
+ ▁the
7
+ ▁s
8
+ re
9
+ ▁w
10
+ ▁o
11
+ in
12
+ at
13
+ er
14
+ nd
15
+ ou
16
+ ▁c
17
+ ▁b
18
+ ▁h
19
+ en
20
+ on
21
+ ▁m
22
+ ▁f
23
+ ing
24
+ ▁p
25
+ ▁to
26
+ ▁and
27
+ ▁d
28
+ an
29
+ or
30
+ es
31
+ ▁y
32
+ ▁l
33
+ ▁of
34
+ ll
35
+ ▁in
36
+ ed
37
+ it
38
+ ▁g
39
+ is
40
+ ▁you
41
+ ▁n
42
+ ar
43
+ om
44
+ as
45
+ ve
46
+ ▁e
47
+ ic
48
+ ▁it
49
+ al
50
+ us
51
+ ▁wh
52
+ ▁we
53
+ ▁be
54
+ ion
55
+ ow
56
+ le
57
+ ▁is
58
+ et
59
+ ent
60
+ ot
61
+ ut
62
+ ▁re
63
+ ▁on
64
+ ay
65
+ ▁ha
66
+ ig
67
+ ▁so
68
+ ct
69
+ ▁he
70
+ ▁for
71
+ ver
72
+ ke
73
+ ro
74
+ ▁st
75
+ id
76
+ ▁go
77
+ all
78
+ se
79
+ ly
80
+ ▁u
81
+ ch
82
+ st
83
+ ld
84
+ ▁k
85
+ ce
86
+ ur
87
+ ▁li
88
+ am
89
+ ▁r
90
+ ht
91
+ ▁j
92
+ ith
93
+ ▁se
94
+ ir
95
+ ▁as
96
+ ▁an
97
+ im
98
+ ▁do
99
+ ad
100
+ ▁was
101
+ ight
102
+ th
103
+ ▁are
104
+ ▁but
105
+ ▁sh
106
+ ust
107
+ ally
108
+ ▁not
109
+ ▁or
110
+ ▁com
111
+ ▁can
112
+ ▁me
113
+ op
114
+ ▁mo
115
+ ▁at
116
+ ill
117
+ ▁ch
118
+ ▁ne
119
+ ant
120
+ ▁de
121
+ ▁kn
122
+ ▁one
123
+ il
124
+ ol
125
+ ▁con
126
+ ter
127
+ ▁ab
128
+ ▁fr
129
+ ere
130
+ ck
131
+ ▁al
132
+ ▁all
133
+ qu
134
+ ▁pro
135
+ ▁som
136
+ ould
137
+ ▁tw
138
+ ul
139
+ ra
140
+ od
141
+ ers
142
+ ▁su
143
+ ive
144
+ ▁v
145
+ use
146
+ ate
147
+ ge
148
+ if
149
+ ▁ex
150
+ ess
151
+ pp
152
+ ▁lo
153
+ out
154
+ ▁if
155
+ est
156
+ ain
157
+ ist
158
+ and
159
+ ea
160
+ very
161
+ art
162
+ ▁wor
163
+ ▁my
164
+ ab
165
+ ment
166
+ ▁bec
167
+ un
168
+ ity
169
+ ri
170
+ pe
171
+ ions
172
+ ▁by
173
+ ok
174
+ our
175
+ ort
176
+ ind
177
+ ink
178
+ nt
179
+ ▁up
180
+ um
181
+ ▁don
182
+ ▁get
183
+ red
184
+ ▁out
185
+ el
186
+ ause
187
+ res
188
+ ▁ma
189
+ ich
190
+ ▁us
191
+ rou
192
+ ▁int
193
+ em
194
+ os
195
+ ies
196
+ ie
197
+ ▁pl
198
+ ▁tr
199
+ ven
200
+ ous
201
+ ▁le
202
+ ▁two
203
+ ard
204
+ ine
205
+ ▁co
206
+ een
207
+ ▁now
208
+ ty
209
+ her
210
+ ack
211
+ ▁pe
212
+ ame
213
+ ▁how
214
+ ▁who
215
+ ▁see
216
+ ▁tim
217
+ ect
218
+ ast
219
+ ▁our
220
+ ci
221
+ ree
222
+ ople
223
+ gh
224
+ ▁no
225
+ ▁had
226
+ ▁man
227
+ ▁qu
228
+ ▁en
229
+ ide
230
+ ure
231
+ ud
232
+ so
233
+ ▁his
234
+ ▁sa
235
+ ▁sp
236
+ ▁say
237
+ ose
238
+ ther
239
+ ▁act
240
+ ▁ta
241
+ ▁cl
242
+ ings
243
+ pt
244
+ king
245
+ ▁any
246
+ ▁has
247
+ ▁un
248
+ iv
249
+ ▁im
250
+ ▁ag
251
+ ▁te
252
+ ▁fe
253
+ one
254
+ per
255
+ ong
256
+ ▁po
257
+ ▁ad
258
+ ff
259
+ ore
260
+ itt
261
+ ans
262
+ iz
263
+ eah
264
+ reat
265
+ act
266
+ own
267
+ hing
268
+ enty
269
+ age
270
+ ber
271
+ ice
272
+ ▁am
273
+ ple
274
+ are
275
+ ▁per
276
+ und
277
+ ite
278
+ ix
279
+ pl
280
+ ▁way
281
+ ▁did
282
+ ▁pr
283
+ ▁got
284
+ ars
285
+ ▁she
286
+ ▁let
287
+ ag
288
+ ▁ac
289
+ int
290
+ ▁ar
291
+ ry
292
+ ign
293
+ ish
294
+ ▁fir
295
+ ace
296
+ ble
297
+ og
298
+ ue
299
+ ▁ye
300
+ ap
301
+ iff
302
+ ▁ro
303
+ ▁her
304
+ nder
305
+ ▁ok
306
+ ▁res
307
+ ▁gu
308
+ ence
309
+ ▁may
310
+ ated
311
+ ip
312
+ ▁bo
313
+ ▁him
314
+ way
315
+ ac
316
+ ical
317
+ ass
318
+ ase
319
+ ▁dis
320
+ able
321
+ ick
322
+ ▁app
323
+ ance
324
+ ▁pre
325
+ ▁six
326
+ ▁off
327
+ ▁new
328
+ ia
329
+ orm
330
+ ank
331
+ ▁lot
332
+ ach
333
+ ▁fo
334
+ inet
335
+ ire
336
+ ary
337
+ ult
338
+ ▁tal
339
+ ▁mu
340
+ ▁bl
341
+ ount
342
+ sel
343
+ vel
344
+ ▁br
345
+ ▁imp
346
+ ep
347
+ cess
348
+ ord
349
+ ▁sc
350
+ ▁inc
351
+ ound
352
+ ang
353
+ be
354
+ ress
355
+ uct
356
+ ▁ind
357
+ ▁af
358
+ ving
359
+ ▁oh
360
+ ▁bet
361
+ ▁use
362
+ ome
363
+ ens
364
+ ys
365
+ ▁bu
366
+ co
367
+ ory
368
+ ater
369
+ ild
370
+ ght
371
+ ial
372
+ ▁day
373
+ ning
374
+ na
375
+ ile
376
+ ▁spe
377
+ ▁mar
378
+ ody
379
+ ough
380
+ ade
381
+ vers
382
+ xt
383
+ ▁fl
384
+ ▁ke
385
+ ian
386
+ ▁sy
387
+ ▁put
388
+ fore
389
+ ub
390
+ ▁ph
391
+ fe
392
+ ▁em
393
+ ▁ser
394
+ form
395
+ ting
396
+ te
397
+ av
398
+ ious
399
+ ▁rec
400
+ ks
401
+ ▁gr
402
+ ces
403
+ wn
404
+ ors
405
+ ▁jo
406
+ ents
407
+ ▁des
408
+ ▁try
409
+ ▁equ
410
+ ▁z
411
+ ▁rem
412
+ ▁str
413
+ self
414
+ ▁bit
415
+ ph
416
+ ved
417
+ ▁why
418
+ ▁bas
419
+ ▁hel
420
+ ▁rel
421
+ ath
422
+ ject
423
+ ail
424
+ ▁la
425
+ ual
426
+ ▁god
427
+ ▁nat
428
+ erm
429
+ day
430
+ ▁id
431
+ ft
432
+ ▁wr
433
+ ▁min
434
+ ates
435
+ ▁gen
436
+ tain
437
+ ▁ob
438
+ ull
439
+ ict
440
+ ▁tra
441
+ ▁end
442
+ ▁hig
443
+ ▁fif
444
+ oth
445
+ tern
446
+ ▁its
447
+ vent
448
+ ▁sm
449
+ ons
450
+ ▁add
451
+ iss
452
+ ▁bel
453
+ ful
454
+ get
455
+ ▁ele
456
+ ▁rep
457
+ ak
458
+ ▁ho
459
+ ▁pos
460
+ ▁num
461
+ ange
462
+ ves
463
+ ific
464
+ urn
465
+ ise
466
+ ▁cr
467
+ ▁um
468
+ ward
469
+ ▁reg
470
+ ady
471
+ ower
472
+ uc
473
+ ▁dec
474
+ lic
475
+ ▁set
476
+ ▁gon
477
+ ▁op
478
+ ▁ear
479
+ ▁sub
480
+ ▁sl
481
+ les
482
+ stem
483
+ cial
484
+ olog
485
+ atch
486
+ ily
487
+ body
488
+ nds
489
+ ular
490
+ ren
491
+ ▁own
492
+ ▁too
493
+ cent
494
+ ible
495
+ pect
496
+ ered
497
+ ways
498
+ teen
499
+ ▁uh
500
+ ▁big
501
+ ▁mod
502
+ ▁att
503
+ ▁car
504
+ gr
505
+ ▁acc
506
+ ied
507
+ mun
508
+ ib
509
+ ▁mon
510
+ ▁sch
511
+ ▁pol
512
+ ▁dat
513
+ ▁fin
514
+ ▁sim
515
+ ▁inv
516
+ ▁def
517
+ ked
518
+ ▁ent
519
+ ▁yes
520
+ ows
521
+ ics
522
+ ited
523
+ ute
524
+ ism
525
+ ps
526
+ ▁ed
527
+ ▁el
528
+ ably
529
+ ppen
530
+ als
531
+ ▁ten
532
+ ract
533
+ ss
534
+ ▁ass
535
+ ▁met
536
+ gan
537
+ ▁eng
538
+ ▁stu
539
+ ween
540
+ arch
541
+ ▁gl
542
+ ▁cor
543
+ ▁dr
544
+ vern
545
+ ▁ty
546
+ ▁run
547
+ hip
548
+ cus
549
+ cond
550
+ ▁ins
551
+ irty
552
+ ▁pub
553
+ lud
554
+ llow
555
+ ▁cou
556
+ ew
557
+ iew
558
+ ▁sur
559
+ ero
560
+ ood
561
+ ness
562
+ ▁fun
563
+ ▁eff
564
+ cept
565
+ ▁ca
566
+ ▁exp
567
+ duct
568
+ ▁sw
569
+ ize
570
+ ope
571
+ ▁par
572
+ kes
573
+ cy
574
+ ▁ev
575
+ ▁ref
576
+ ell
577
+ ▁bus
578
+ ug
579
+ rib
580
+ ▁cur
581
+ mo
582
+ ock
583
+ ures
584
+ air
585
+ ▁war
586
+ str
587
+ ▁med
588
+ ▁wa
589
+ ▁val
590
+ ▁sin
591
+ blem
592
+ ▁fam
593
+ li
594
+ ▁far
595
+ ▁cle
596
+ ▁col
597
+ mon
598
+ ▁gra
599
+ led
600
+ ense
601
+ tin
602
+ ues
603
+ its
604
+ ▁mem
605
+ ▁inf
606
+ ▁eas
607
+ ideo
608
+ ▁top
609
+ io
610
+ pan
611
+ ▁hum
612
+ ▁old
613
+ ead
614
+ ▁ord
615
+ ric
616
+ ants
617
+ oy
618
+ esn
619
+ uck
620
+ ason
621
+ ced
622
+ ool
623
+ rat
624
+ ouse
625
+ ▁lar
626
+ ▁art
627
+ ▁wee
628
+ ▁cer
629
+ ized
630
+ ▁mat
631
+ con
632
+ erg
633
+ land
634
+ ines
635
+ ▁chr
636
+ ▁aut
637
+ ▁lea
638
+ ▁sou
639
+ oney
640
+ tty
641
+ ▁ple
642
+ ulat
643
+ oks
644
+ ▁few
645
+ ▁sol
646
+ ▁che
647
+ chn
648
+ ird
649
+ ▁bre
650
+ ▁dur
651
+ ▁wom
652
+ me
653
+ izat
654
+ eric
655
+ ote
656
+ ▁uni
657
+ eren
658
+ arn
659
+ ross
660
+ ices
661
+ ten
662
+ eral
663
+ ever
664
+ ieve
665
+ lish
666
+ ash
667
+ ▁opp
668
+ alth
669
+ ger
670
+ ▁sk
671
+ ▁red
672
+ peri
673
+ ▁det
674
+ ▁ext
675
+ ner
676
+ ah
677
+ ▁var
678
+ ▁loc
679
+ gram
680
+ ists
681
+ ives
682
+ ▁es
683
+ ▁nor
684
+ tro
685
+ ale
686
+ ▁iss
687
+ ▁pri
688
+ gin
689
+ az
690
+ oc
691
+ ▁pop
692
+ ern
693
+ ▁sit
694
+ ket
695
+ ▁pa
696
+ ▁law
697
+ ages
698
+ br
699
+ ▁cam
700
+ ▁mom
701
+ osed
702
+ ▁bro
703
+ ne
704
+ bs
705
+ ▁cre
706
+ erat
707
+ ▁sec
708
+ ▁cap
709
+ ▁vis
710
+ ▁pat
711
+ ield
712
+ iet
713
+ ▁tri
714
+ up
715
+ ▁bra
716
+ ts
717
+ ▁mot
718
+ ▁unt
719
+ put
720
+ bo
721
+ ork
722
+ mer
723
+ ital
724
+ ▁air
725
+ ined
726
+ ▁beh
727
+ ▁adv
728
+ ▁ret
729
+ imes
730
+ ▁tea
731
+ ural
732
+ sid
733
+ ters
734
+ ▁pur
735
+ ▁sci
736
+ bers
737
+ ient
738
+ ier
739
+ cc
740
+ sw
741
+ ▁av
742
+ reen
743
+ ode
744
+ ont
745
+ ▁dra
746
+ ann
747
+ nect
748
+ ▁x
749
+ ▁eu
750
+ ton
751
+ inat
752
+ ene
753
+ ared
754
+ els
755
+ ▁mor
756
+ ▁rat
757
+ cri
758
+ ▁men
759
+ ▁ah
760
+ ames
761
+ ▁arm
762
+ eak
763
+ ▁pay
764
+ ▁hal
765
+ ins
766
+ ilit
767
+ stit
768
+ ▁ra
769
+ ▁leg
770
+ cl
771
+ pr
772
+ ▁wal
773
+ ▁bad
774
+ ▁ge
775
+ roup
776
+ ▁mus
777
+ man
778
+ ▁gi
779
+ eds
780
+ ▁aw
781
+ po
782
+ ark
783
+ row
784
+ ▁dep
785
+ ully
786
+ ral
787
+ lect
788
+ pend
789
+ ▁sev
790
+ ime
791
+ gest
792
+ here
793
+ ▁yet
794
+ ted
795
+ ▁rev
796
+ ds
797
+ ▁ask
798
+ less
799
+ ▁di
800
+ ets
801
+ line
802
+ ▁aff
803
+ ired
804
+ ▁est
805
+ ken
806
+ vid
807
+ most
808
+ ivid
809
+ unch
810
+ par
811
+ med
812
+ rop
813
+ ased
814
+ eone
815
+ ▁ve
816
+ ▁abs
817
+ ergy
818
+ ret
819
+ ▁saw
820
+ ▁ey
821
+ ▁cal
822
+ uat
823
+ ▁mid
824
+ vat
825
+ ream
826
+ vice
827
+ ians
828
+ rent
829
+ ctor
830
+ err
831
+ ush
832
+ ases
833
+ ▁suc
834
+ erms
835
+ ave
836
+ angu
837
+ ries
838
+ ▁wo
839
+ arts
840
+ ▁fil
841
+ ▁fat
842
+ ▁cho
843
+ orts
844
+ ▁fre
845
+ ee
846
+ ught
847
+ eng
848
+ ump
849
+ ▁bar
850
+ ying
851
+ ane
852
+ ▁tem
853
+ anks
854
+ ury
855
+ iat
856
+ mit
857
+ trol
858
+ ▁net
859
+ ▁maj
860
+ ▁cra
861
+ ling
862
+ ▁fig
863
+ orn
864
+ icat
865
+ pany
866
+ ▁occ
867
+ ott
868
+ ands
869
+ ▁exc
870
+ ▁mr
871
+ ency
872
+ rope
873
+ itch
874
+ ▁lit
875
+ abil
876
+ not
877
+ ma
878
+ ▁typ
879
+ ▁opt
880
+ ob
881
+ ser
882
+ ety
883
+ ms
884
+ peci
885
+ aces
886
+ aut
887
+ ▁hon
888
+ cuss
889
+ ▁sal
890
+ ▁sor
891
+ att
892
+ ▁lab
893
+ ▁har
894
+ urch
895
+ nded
896
+ uce
897
+ ids
898
+ ▁hy
899
+ ▁fut
900
+ ▁ste
901
+ ours
902
+ ems
903
+ utes
904
+ ng
905
+ ta
906
+ ▁won
907
+ ▁fa
908
+ ▁env
909
+ ards
910
+ ▁job
911
+ ium
912
+ ▁dot
913
+ ▁obv
914
+ ina
915
+ side
916
+ elve
917
+ cu
918
+ ▁jes
919
+ ▁pot
920
+ ▁pie
921
+ ▁tre
922
+ ▁hey
923
+ ▁mag
924
+ ron
925
+ ▁key
926
+ swer
927
+ ▁win
928
+ ucat
929
+ work
930
+ ides
931
+ ▁low
932
+ ▁vol
933
+ ▁oth
934
+ atic
935
+ lf
936
+ ads
937
+ inds
938
+ com
939
+ ths
940
+ ▁ver
941
+ ised
942
+ lo
943
+ ▁squ
944
+ ▁cut
945
+ oked
946
+ irit
947
+ ateg
948
+ ppy
949
+ mitt
950
+ come
951
+ hn
952
+ igin
953
+ mand
954
+ ▁dam
955
+ ho
956
+ ▁da
957
+ ▁fur
958
+ iron
959
+ ilar
960
+ ▁fac
961
+ ▁neg
962
+ ▁ago
963
+ ged
964
+ miss
965
+ enth
966
+ ▁dou
967
+ ▁hit
968
+ ▁guy
969
+ ▁bi
970
+ ove
971
+ fess
972
+ ples
973
+ owed
974
+ ured
975
+ ▁ris
976
+ ints
977
+ rew
978
+ ▁sum
979
+ ▁hu
980
+ ploy
981
+ ude
982
+ ried
983
+ ▁cir
984
+ ▁dev
985
+ ear
986
+ ▁tot
987
+ ▁ann
988
+ duc
989
+ ik
990
+ pon
991
+ sted
992
+ ▁ide
993
+ ▁'
994
+ ipp
995
+ ▁eat
996
+ ▁dom
997
+
998
+ e
999
+ t
1000
+ o
1001
+ a
1002
+ i
1003
+ n
1004
+ s
1005
+ r
1006
+ h
1007
+ l
1008
+ d
1009
+ u
1010
+ c
1011
+ m
1012
+ y
1013
+ g
1014
+ w
1015
+ f
1016
+ p
1017
+ b
1018
+ v
1019
+ k
1020
+ '
1021
+ j
1022
+ x
1023
+ q
1024
+ z
1025
+ <EOU>
1026
+ <EOB>
voice-agent.png ADDED

Git LFS Details

  • SHA256: 91ba46c05bf6a211b340a361e1f0c853210b008975743942796c08203c1a16f3
  • Pointer size: 131 Bytes
  • Size of remote file: 160 kB