Update README.md
Browse files
README.md
CHANGED
@@ -72,6 +72,33 @@ Combined dataset including:
|
|
72 |
|
73 |
## Training Procedure
|
74 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
### Training Hyperparameters
|
76 |
```yaml
|
77 |
learning_rate: 0.001
|
|
|
72 |
|
73 |
## Training Procedure
|
74 |
|
75 |
+
## Installation and Usage
|
76 |
+
|
77 |
+
```bash
|
78 |
+
|
79 |
+
pip install git+https://github.com/sudoping01/[email protected]
|
80 |
+
|
81 |
+
```
|
82 |
+
|
83 |
+
### Quick Start
|
84 |
+
|
85 |
+
```python
|
86 |
+
|
87 |
+
from whosper import WhosperTranscriber
|
88 |
+
|
89 |
+
# Initialize the transcriber
|
90 |
+
|
91 |
+
transcriber = WhosperTranscriber(model_id = "sudoping01/whosper-large-v3")
|
92 |
+
|
93 |
+
# Transcribe an audio file
|
94 |
+
|
95 |
+
result = transcriber.transcribe_audio("path/to/your/audio.wav")
|
96 |
+
|
97 |
+
print(result)
|
98 |
+
|
99 |
+
```
|
100 |
+
|
101 |
+
|
102 |
### Training Hyperparameters
|
103 |
```yaml
|
104 |
learning_rate: 0.001
|