Update README.md
Browse files
README.md
CHANGED
|
@@ -46,7 +46,6 @@ print(result["text"])
|
|
| 46 |
```python
|
| 47 |
from transformers import pipeline
|
| 48 |
|
| 49 |
-
# Замените YOUR_USERNAME на ваш никнейм
|
| 50 |
pipe = pipeline("automatic-speech-recognition", model="aleton/whisper-small-be-custom")
|
| 51 |
result = pipe("audio_file.mp3")
|
| 52 |
print(result["text"])
|
|
@@ -65,7 +64,6 @@ print(result["text"])
|
|
| 65 |
```python
|
| 66 |
from transformers import pipeline
|
| 67 |
|
| 68 |
-
# Замяніце YOUR_USERNAME на ваш нікнэйм
|
| 69 |
pipe = pipeline("automatic-speech-recognition", model="aleton/whisper-small-be-custom")
|
| 70 |
result = pipe("audio_file.mp3")
|
| 71 |
print(result["text"])
|
|
|
|
| 46 |
```python
|
| 47 |
from transformers import pipeline
|
| 48 |
|
|
|
|
| 49 |
pipe = pipeline("automatic-speech-recognition", model="aleton/whisper-small-be-custom")
|
| 50 |
result = pipe("audio_file.mp3")
|
| 51 |
print(result["text"])
|
|
|
|
| 64 |
```python
|
| 65 |
from transformers import pipeline
|
| 66 |
|
|
|
|
| 67 |
pipe = pipeline("automatic-speech-recognition", model="aleton/whisper-small-be-custom")
|
| 68 |
result = pipe("audio_file.mp3")
|
| 69 |
print(result["text"])
|