Update README.md
Browse files
README.md
CHANGED
@@ -8,6 +8,7 @@ language:
|
|
8 |
- zh
|
9 |
metrics:
|
10 |
- accuracy
|
|
|
11 |
---
|
12 |
|
13 |
# Spoken_language_identification
|
@@ -41,6 +42,10 @@ vietnamese
|
|
41 |
#### How to use
|
42 |
|
43 |
```python
|
44 |
-
import
|
45 |
|
46 |
-
|
|
|
|
|
|
|
|
|
|
|
|
8 |
- zh
|
9 |
metrics:
|
10 |
- accuracy
|
11 |
+
pipeline_tag: audio-classification
|
12 |
---
|
13 |
|
14 |
# Spoken_language_identification
|
|
|
42 |
#### How to use
|
43 |
|
44 |
```python
|
|
|
45 |
|
46 |
+
from huggingface_hub import from_pretrained_keras
|
47 |
+
|
48 |
+
model = from_pretrained_keras("SpeechFlow/spoken_language_identification")
|
49 |
+
|
50 |
+
|
51 |
+
```
|