kurianbenoy commited on
Commit
5857953
1 Parent(s): 482415a

update model

Browse files
vegam-whisper-medium-ml-fp16/.gitattributes ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ *.7z filter=lfs diff=lfs merge=lfs -text
2
+ *.arrow filter=lfs diff=lfs merge=lfs -text
3
+ *.bin filter=lfs diff=lfs merge=lfs -text
4
+ *.bz2 filter=lfs diff=lfs merge=lfs -text
5
+ *.ckpt filter=lfs diff=lfs merge=lfs -text
6
+ *.ftz filter=lfs diff=lfs merge=lfs -text
7
+ *.gz filter=lfs diff=lfs merge=lfs -text
8
+ *.h5 filter=lfs diff=lfs merge=lfs -text
9
+ *.joblib filter=lfs diff=lfs merge=lfs -text
10
+ *.lfs.* filter=lfs diff=lfs merge=lfs -text
11
+ *.mlmodel filter=lfs diff=lfs merge=lfs -text
12
+ *.model filter=lfs diff=lfs merge=lfs -text
13
+ *.msgpack filter=lfs diff=lfs merge=lfs -text
14
+ *.npy filter=lfs diff=lfs merge=lfs -text
15
+ *.npz filter=lfs diff=lfs merge=lfs -text
16
+ *.onnx filter=lfs diff=lfs merge=lfs -text
17
+ *.ot filter=lfs diff=lfs merge=lfs -text
18
+ *.parquet filter=lfs diff=lfs merge=lfs -text
19
+ *.pb filter=lfs diff=lfs merge=lfs -text
20
+ *.pickle filter=lfs diff=lfs merge=lfs -text
21
+ *.pkl filter=lfs diff=lfs merge=lfs -text
22
+ *.pt filter=lfs diff=lfs merge=lfs -text
23
+ *.pth filter=lfs diff=lfs merge=lfs -text
24
+ *.rar filter=lfs diff=lfs merge=lfs -text
25
+ *.safetensors filter=lfs diff=lfs merge=lfs -text
26
+ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
27
+ *.tar.* filter=lfs diff=lfs merge=lfs -text
28
+ *.tflite filter=lfs diff=lfs merge=lfs -text
29
+ *.tgz filter=lfs diff=lfs merge=lfs -text
30
+ *.wasm filter=lfs diff=lfs merge=lfs -text
31
+ *.xz filter=lfs diff=lfs merge=lfs -text
32
+ *.zip filter=lfs diff=lfs merge=lfs -text
33
+ *.zst filter=lfs diff=lfs merge=lfs -text
34
+ *tfevents* filter=lfs diff=lfs merge=lfs -text
vegam-whisper-medium-ml-fp16/00b38e80-80b8-4f70-babf-566e848879fc.webm ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d99eae55e0bcccca47e10318859986878c47a34d8f1c601c638e70a0b97d77cf
3
+ size 31241
vegam-whisper-medium-ml-fp16/README.md ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - ml
4
+ tags:
5
+ - audio
6
+ - automatic-speech-recognition
7
+ license: mit
8
+ datasets:
9
+ - google/fleurs
10
+ - thennal/IMaSC
11
+ - mozilla-foundation/common_voice_11_0
12
+ library_name: ctranslate2
13
+ ---
14
+
15
+ # vegam-whipser-medium-ml
16
+
17
+ This is a conversion of [thennal/whisper-medium-ml](https://huggingface.co/thennal/whisper-medium-ml) to the [CTranslate2](https://github.com/OpenNMT/CTranslate2) model format.
18
+
19
+ This model can be used in CTranslate2 or projects based on CTranslate2 such as [faster-whisper](https://github.com/guillaumekln/faster-whisper).
20
+
21
+ ## Installation
22
+
23
+ - Install [faster-whisper](https://github.com/guillaumekln/faster-whisper). More details about installation can be [found here in faster-whisper](https://github.com/guillaumekln/faster-whisper/tree/master#installation).
24
+
25
+ ```
26
+ pip install faster-whisper
27
+ ```
28
+
29
+ - Install [git-lfs](https://git-lfs.com/) for using this project. Note that git-lfs is just for downloading model from hugging-face.
30
+
31
+ ```
32
+ apt-get install git-lfs
33
+ ```
34
+
35
+ - Download the model weights
36
+
37
+ ```
38
+ git lfs install
39
+ git clone https://huggingface.co/kurianbenoy/vegam-whisper-medium-ml-fp16
40
+ ```
41
+
42
+ ## Usage
43
+
44
+ ```
45
+ from faster_whisper import WhisperModel
46
+
47
+ model_path = "vegam-whisper-medium-ml-fp16"
48
+
49
+ # Run on GPU with FP16
50
+ model = WhisperModel(model_path, device="cuda", compute_type="float16")
51
+
52
+ segments, info = model.transcribe("audio.mp3", beam_size=5)
53
+
54
+ print("Detected language '%s' with probability %f" % (info.language, info.language_probability))
55
+
56
+ for segment in segments:
57
+ print("[%.2fs -> %.2fs] %s" % (segment.start, segment.end, segment.text))
58
+ ```
59
+
60
+ ## Example
61
+
62
+ ```
63
+ from faster_whisper import WhisperModel
64
+
65
+ model_path = "vegam-whisper-medium-ml-fp16"
66
+
67
+ model = WhisperModel(model_path, device="cuda", compute_type="float16")
68
+
69
+
70
+ segments, info = model.transcribe("00b38e80-80b8-4f70-babf-566e848879fc.webm", beam_size=5)
71
+
72
+ print("Detected language '%s' with probability %f" % (info.language, info.language_probability))
73
+
74
+ for segment in segments:
75
+ print("[%.2fs -> %.2fs] %s" % (segment.start, segment.end, segment.text))
76
+ ```
77
+
78
+ > Detected language 'ta' with probability 0.353516
79
+
80
+ > [0.00s -> 4.74s] പാലം കടുക്കുവോളം നാരായണ പാലം കടന്നാലൊ കൂരായണ
81
+
82
+ Note: The audio file [00b38e80-80b8-4f70-babf-566e848879fc.webm](https://huggingface.co/kurianbenoy/vegam-whisper-medium-ml/blob/main/00b38e80-80b8-4f70-babf-566e848879fc.webm) is from [Malayalam Speech Corpus](https://blog.smc.org.in/malayalam-speech-corpus/) and is stored along with model weights.
83
+ ## Conversion Details
84
+
85
+ This conversion was possible with wonderful [CTranslate2 library](https://github.com/OpenNMT/CTranslate2) leveraging the [Transformers converter for OpenAI Whisper](https://opennmt.net/CTranslate2/guides/transformers.html#whisper).The original model was converted with the following command:
86
+
87
+ ```
88
+ ct2-transformers-converter --model thennal/whisper-medium-ml --output_dir vegam-whisper-medium-ml-fp16 \
89
+ --quantization float16
90
+ ```
91
+
92
+ ## Many Thanks to
93
+
94
+ - Creators of CTranslate2 and faster-whisper
95
+ - Thennal D K
96
+ - Santhosh Thottingal
97
+
vegam-whisper-medium-ml-fp16/config.json ADDED
@@ -0,0 +1,878 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alignment_heads": [
3
+ [
4
+ 12,
5
+ 0
6
+ ],
7
+ [
8
+ 12,
9
+ 1
10
+ ],
11
+ [
12
+ 12,
13
+ 2
14
+ ],
15
+ [
16
+ 12,
17
+ 3
18
+ ],
19
+ [
20
+ 12,
21
+ 4
22
+ ],
23
+ [
24
+ 12,
25
+ 5
26
+ ],
27
+ [
28
+ 12,
29
+ 6
30
+ ],
31
+ [
32
+ 12,
33
+ 7
34
+ ],
35
+ [
36
+ 12,
37
+ 8
38
+ ],
39
+ [
40
+ 12,
41
+ 9
42
+ ],
43
+ [
44
+ 12,
45
+ 10
46
+ ],
47
+ [
48
+ 12,
49
+ 11
50
+ ],
51
+ [
52
+ 12,
53
+ 12
54
+ ],
55
+ [
56
+ 12,
57
+ 13
58
+ ],
59
+ [
60
+ 12,
61
+ 14
62
+ ],
63
+ [
64
+ 12,
65
+ 15
66
+ ],
67
+ [
68
+ 13,
69
+ 0
70
+ ],
71
+ [
72
+ 13,
73
+ 1
74
+ ],
75
+ [
76
+ 13,
77
+ 2
78
+ ],
79
+ [
80
+ 13,
81
+ 3
82
+ ],
83
+ [
84
+ 13,
85
+ 4
86
+ ],
87
+ [
88
+ 13,
89
+ 5
90
+ ],
91
+ [
92
+ 13,
93
+ 6
94
+ ],
95
+ [
96
+ 13,
97
+ 7
98
+ ],
99
+ [
100
+ 13,
101
+ 8
102
+ ],
103
+ [
104
+ 13,
105
+ 9
106
+ ],
107
+ [
108
+ 13,
109
+ 10
110
+ ],
111
+ [
112
+ 13,
113
+ 11
114
+ ],
115
+ [
116
+ 13,
117
+ 12
118
+ ],
119
+ [
120
+ 13,
121
+ 13
122
+ ],
123
+ [
124
+ 13,
125
+ 14
126
+ ],
127
+ [
128
+ 13,
129
+ 15
130
+ ],
131
+ [
132
+ 14,
133
+ 0
134
+ ],
135
+ [
136
+ 14,
137
+ 1
138
+ ],
139
+ [
140
+ 14,
141
+ 2
142
+ ],
143
+ [
144
+ 14,
145
+ 3
146
+ ],
147
+ [
148
+ 14,
149
+ 4
150
+ ],
151
+ [
152
+ 14,
153
+ 5
154
+ ],
155
+ [
156
+ 14,
157
+ 6
158
+ ],
159
+ [
160
+ 14,
161
+ 7
162
+ ],
163
+ [
164
+ 14,
165
+ 8
166
+ ],
167
+ [
168
+ 14,
169
+ 9
170
+ ],
171
+ [
172
+ 14,
173
+ 10
174
+ ],
175
+ [
176
+ 14,
177
+ 11
178
+ ],
179
+ [
180
+ 14,
181
+ 12
182
+ ],
183
+ [
184
+ 14,
185
+ 13
186
+ ],
187
+ [
188
+ 14,
189
+ 14
190
+ ],
191
+ [
192
+ 14,
193
+ 15
194
+ ],
195
+ [
196
+ 15,
197
+ 0
198
+ ],
199
+ [
200
+ 15,
201
+ 1
202
+ ],
203
+ [
204
+ 15,
205
+ 2
206
+ ],
207
+ [
208
+ 15,
209
+ 3
210
+ ],
211
+ [
212
+ 15,
213
+ 4
214
+ ],
215
+ [
216
+ 15,
217
+ 5
218
+ ],
219
+ [
220
+ 15,
221
+ 6
222
+ ],
223
+ [
224
+ 15,
225
+ 7
226
+ ],
227
+ [
228
+ 15,
229
+ 8
230
+ ],
231
+ [
232
+ 15,
233
+ 9
234
+ ],
235
+ [
236
+ 15,
237
+ 10
238
+ ],
239
+ [
240
+ 15,
241
+ 11
242
+ ],
243
+ [
244
+ 15,
245
+ 12
246
+ ],
247
+ [
248
+ 15,
249
+ 13
250
+ ],
251
+ [
252
+ 15,
253
+ 14
254
+ ],
255
+ [
256
+ 15,
257
+ 15
258
+ ],
259
+ [
260
+ 16,
261
+ 0
262
+ ],
263
+ [
264
+ 16,
265
+ 1
266
+ ],
267
+ [
268
+ 16,
269
+ 2
270
+ ],
271
+ [
272
+ 16,
273
+ 3
274
+ ],
275
+ [
276
+ 16,
277
+ 4
278
+ ],
279
+ [
280
+ 16,
281
+ 5
282
+ ],
283
+ [
284
+ 16,
285
+ 6
286
+ ],
287
+ [
288
+ 16,
289
+ 7
290
+ ],
291
+ [
292
+ 16,
293
+ 8
294
+ ],
295
+ [
296
+ 16,
297
+ 9
298
+ ],
299
+ [
300
+ 16,
301
+ 10
302
+ ],
303
+ [
304
+ 16,
305
+ 11
306
+ ],
307
+ [
308
+ 16,
309
+ 12
310
+ ],
311
+ [
312
+ 16,
313
+ 13
314
+ ],
315
+ [
316
+ 16,
317
+ 14
318
+ ],
319
+ [
320
+ 16,
321
+ 15
322
+ ],
323
+ [
324
+ 17,
325
+ 0
326
+ ],
327
+ [
328
+ 17,
329
+ 1
330
+ ],
331
+ [
332
+ 17,
333
+ 2
334
+ ],
335
+ [
336
+ 17,
337
+ 3
338
+ ],
339
+ [
340
+ 17,
341
+ 4
342
+ ],
343
+ [
344
+ 17,
345
+ 5
346
+ ],
347
+ [
348
+ 17,
349
+ 6
350
+ ],
351
+ [
352
+ 17,
353
+ 7
354
+ ],
355
+ [
356
+ 17,
357
+ 8
358
+ ],
359
+ [
360
+ 17,
361
+ 9
362
+ ],
363
+ [
364
+ 17,
365
+ 10
366
+ ],
367
+ [
368
+ 17,
369
+ 11
370
+ ],
371
+ [
372
+ 17,
373
+ 12
374
+ ],
375
+ [
376
+ 17,
377
+ 13
378
+ ],
379
+ [
380
+ 17,
381
+ 14
382
+ ],
383
+ [
384
+ 17,
385
+ 15
386
+ ],
387
+ [
388
+ 18,
389
+ 0
390
+ ],
391
+ [
392
+ 18,
393
+ 1
394
+ ],
395
+ [
396
+ 18,
397
+ 2
398
+ ],
399
+ [
400
+ 18,
401
+ 3
402
+ ],
403
+ [
404
+ 18,
405
+ 4
406
+ ],
407
+ [
408
+ 18,
409
+ 5
410
+ ],
411
+ [
412
+ 18,
413
+ 6
414
+ ],
415
+ [
416
+ 18,
417
+ 7
418
+ ],
419
+ [
420
+ 18,
421
+ 8
422
+ ],
423
+ [
424
+ 18,
425
+ 9
426
+ ],
427
+ [
428
+ 18,
429
+ 10
430
+ ],
431
+ [
432
+ 18,
433
+ 11
434
+ ],
435
+ [
436
+ 18,
437
+ 12
438
+ ],
439
+ [
440
+ 18,
441
+ 13
442
+ ],
443
+ [
444
+ 18,
445
+ 14
446
+ ],
447
+ [
448
+ 18,
449
+ 15
450
+ ],
451
+ [
452
+ 19,
453
+ 0
454
+ ],
455
+ [
456
+ 19,
457
+ 1
458
+ ],
459
+ [
460
+ 19,
461
+ 2
462
+ ],
463
+ [
464
+ 19,
465
+ 3
466
+ ],
467
+ [
468
+ 19,
469
+ 4
470
+ ],
471
+ [
472
+ 19,
473
+ 5
474
+ ],
475
+ [
476
+ 19,
477
+ 6
478
+ ],
479
+ [
480
+ 19,
481
+ 7
482
+ ],
483
+ [
484
+ 19,
485
+ 8
486
+ ],
487
+ [
488
+ 19,
489
+ 9
490
+ ],
491
+ [
492
+ 19,
493
+ 10
494
+ ],
495
+ [
496
+ 19,
497
+ 11
498
+ ],
499
+ [
500
+ 19,
501
+ 12
502
+ ],
503
+ [
504
+ 19,
505
+ 13
506
+ ],
507
+ [
508
+ 19,
509
+ 14
510
+ ],
511
+ [
512
+ 19,
513
+ 15
514
+ ],
515
+ [
516
+ 20,
517
+ 0
518
+ ],
519
+ [
520
+ 20,
521
+ 1
522
+ ],
523
+ [
524
+ 20,
525
+ 2
526
+ ],
527
+ [
528
+ 20,
529
+ 3
530
+ ],
531
+ [
532
+ 20,
533
+ 4
534
+ ],
535
+ [
536
+ 20,
537
+ 5
538
+ ],
539
+ [
540
+ 20,
541
+ 6
542
+ ],
543
+ [
544
+ 20,
545
+ 7
546
+ ],
547
+ [
548
+ 20,
549
+ 8
550
+ ],
551
+ [
552
+ 20,
553
+ 9
554
+ ],
555
+ [
556
+ 20,
557
+ 10
558
+ ],
559
+ [
560
+ 20,
561
+ 11
562
+ ],
563
+ [
564
+ 20,
565
+ 12
566
+ ],
567
+ [
568
+ 20,
569
+ 13
570
+ ],
571
+ [
572
+ 20,
573
+ 14
574
+ ],
575
+ [
576
+ 20,
577
+ 15
578
+ ],
579
+ [
580
+ 21,
581
+ 0
582
+ ],
583
+ [
584
+ 21,
585
+ 1
586
+ ],
587
+ [
588
+ 21,
589
+ 2
590
+ ],
591
+ [
592
+ 21,
593
+ 3
594
+ ],
595
+ [
596
+ 21,
597
+ 4
598
+ ],
599
+ [
600
+ 21,
601
+ 5
602
+ ],
603
+ [
604
+ 21,
605
+ 6
606
+ ],
607
+ [
608
+ 21,
609
+ 7
610
+ ],
611
+ [
612
+ 21,
613
+ 8
614
+ ],
615
+ [
616
+ 21,
617
+ 9
618
+ ],
619
+ [
620
+ 21,
621
+ 10
622
+ ],
623
+ [
624
+ 21,
625
+ 11
626
+ ],
627
+ [
628
+ 21,
629
+ 12
630
+ ],
631
+ [
632
+ 21,
633
+ 13
634
+ ],
635
+ [
636
+ 21,
637
+ 14
638
+ ],
639
+ [
640
+ 21,
641
+ 15
642
+ ],
643
+ [
644
+ 22,
645
+ 0
646
+ ],
647
+ [
648
+ 22,
649
+ 1
650
+ ],
651
+ [
652
+ 22,
653
+ 2
654
+ ],
655
+ [
656
+ 22,
657
+ 3
658
+ ],
659
+ [
660
+ 22,
661
+ 4
662
+ ],
663
+ [
664
+ 22,
665
+ 5
666
+ ],
667
+ [
668
+ 22,
669
+ 6
670
+ ],
671
+ [
672
+ 22,
673
+ 7
674
+ ],
675
+ [
676
+ 22,
677
+ 8
678
+ ],
679
+ [
680
+ 22,
681
+ 9
682
+ ],
683
+ [
684
+ 22,
685
+ 10
686
+ ],
687
+ [
688
+ 22,
689
+ 11
690
+ ],
691
+ [
692
+ 22,
693
+ 12
694
+ ],
695
+ [
696
+ 22,
697
+ 13
698
+ ],
699
+ [
700
+ 22,
701
+ 14
702
+ ],
703
+ [
704
+ 22,
705
+ 15
706
+ ],
707
+ [
708
+ 23,
709
+ 0
710
+ ],
711
+ [
712
+ 23,
713
+ 1
714
+ ],
715
+ [
716
+ 23,
717
+ 2
718
+ ],
719
+ [
720
+ 23,
721
+ 3
722
+ ],
723
+ [
724
+ 23,
725
+ 4
726
+ ],
727
+ [
728
+ 23,
729
+ 5
730
+ ],
731
+ [
732
+ 23,
733
+ 6
734
+ ],
735
+ [
736
+ 23,
737
+ 7
738
+ ],
739
+ [
740
+ 23,
741
+ 8
742
+ ],
743
+ [
744
+ 23,
745
+ 9
746
+ ],
747
+ [
748
+ 23,
749
+ 10
750
+ ],
751
+ [
752
+ 23,
753
+ 11
754
+ ],
755
+ [
756
+ 23,
757
+ 12
758
+ ],
759
+ [
760
+ 23,
761
+ 13
762
+ ],
763
+ [
764
+ 23,
765
+ 14
766
+ ],
767
+ [
768
+ 23,
769
+ 15
770
+ ]
771
+ ],
772
+ "lang_ids": [
773
+ 50259,
774
+ 50260,
775
+ 50261,
776
+ 50262,
777
+ 50263,
778
+ 50264,
779
+ 50265,
780
+ 50266,
781
+ 50267,
782
+ 50268,
783
+ 50269,
784
+ 50270,
785
+ 50271,
786
+ 50272,
787
+ 50273,
788
+ 50274,
789
+ 50275,
790
+ 50276,
791
+ 50277,
792
+ 50278,
793
+ 50279,
794
+ 50280,
795
+ 50281,
796
+ 50282,
797
+ 50283,
798
+ 50284,
799
+ 50285,
800
+ 50286,
801
+ 50287,
802
+ 50288,
803
+ 50289,
804
+ 50290,
805
+ 50291,
806
+ 50292,
807
+ 50293,
808
+ 50294,
809
+ 50295,
810
+ 50296,
811
+ 50297,
812
+ 50298,
813
+ 50299,
814
+ 50300,
815
+ 50301,
816
+ 50302,
817
+ 50303,
818
+ 50304,
819
+ 50305,
820
+ 50306,
821
+ 50307,
822
+ 50308,
823
+ 50309,
824
+ 50310,
825
+ 50311,
826
+ 50312,
827
+ 50313,
828
+ 50314,
829
+ 50315,
830
+ 50316,
831
+ 50317,
832
+ 50318,
833
+ 50319,
834
+ 50320,
835
+ 50321,
836
+ 50322,
837
+ 50323,
838
+ 50324,
839
+ 50325,
840
+ 50326,
841
+ 50327,
842
+ 50328,
843
+ 50329,
844
+ 50330,
845
+ 50331,
846
+ 50332,
847
+ 50333,
848
+ 50334,
849
+ 50335,
850
+ 50336,
851
+ 50337,
852
+ 50338,
853
+ 50339,
854
+ 50340,
855
+ 50341,
856
+ 50342,
857
+ 50343,
858
+ 50344,
859
+ 50345,
860
+ 50346,
861
+ 50347,
862
+ 50348,
863
+ 50349,
864
+ 50350,
865
+ 50351,
866
+ 50352,
867
+ 50353,
868
+ 50354,
869
+ 50355,
870
+ 50356,
871
+ 50357
872
+ ],
873
+ "suppress_ids": [],
874
+ "suppress_ids_begin": [
875
+ 220,
876
+ 50257
877
+ ]
878
+ }
vegam-whisper-medium-ml-fp16/model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:45f41cbe71f56faef31b5fd181e96b5f05add5cdcef83aec11480d15639ee5eb
3
+ size 1527906378
vegam-whisper-medium-ml-fp16/vocabulary.txt ADDED
The diff for this file is too large to render. See raw diff