Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
language:
|
4 |
+
- en
|
5 |
+
metrics:
|
6 |
+
- wer
|
7 |
+
pipeline_tag: automatic-speech-recognition
|
8 |
+
---
|
9 |
+
|
10 |
+
```py
|
11 |
+
# Use a pipeline as a high-level helper
|
12 |
+
from transformers import pipeline
|
13 |
+
|
14 |
+
pipe = pipeline("automatic-speech-recognition", model="seba3y/speecht5-asr-punctuation-sensitive")
|
15 |
+
```
|