File size: 1,163 Bytes
f2f6d51
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
bcbcc28
f2f6d51
 
 
 
 
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
---
language:
- th
tags:
- audio
- automatic-speech-recognition
license: mit
library_name: ctranslate2
base_model:
- biodatlab/whisper-th-large-v3-combined
pipeline_tag: automatic-speech-recognition
---

# Whisper Large V3 (Thai): Combined V1 model for CTranslate2

ที่เก็บข้อมูลนี้มีไฟล์ที่แปลงจาก [biodatlab/whisper-th-large-v3-combined](https://huggingface.co/biodatlab/whisper-th-large-v3-combined) ไปเป็นรูปแบบโมเดลของ [CTranslate2](https://github.com/OpenNMT/CTranslate2).

โมเดลนี้สามารถใช้ได้ใน CTranslate2 หรือโปรเจกต์ที่พัฒนาต่อจาก CTranslate2 เช่น [faster-whisper](https://github.com/systran/faster-whisper).

## ตัวอย่างการใช้งาน

```python
from faster_whisper import WhisperModel

model = WhisperModel("Vinxscribe/biodatlab-whisper-th-large-v3-faster")

segments, info = model.transcribe("audio.mp3")
for segment in segments:
    print("[%.2fs -> %.2fs] %s" % (segment.start, segment.end, segment.text))
```