chore: use hfup to manage
Browse files- .gitattributes +3 -2
- README.md +39 -3
- hfup.config.json +23 -0
.gitattributes
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
| 1 |
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 2 |
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 3 |
*.bin filter=lfs diff=lfs merge=lfs -text
|
|
@@ -33,5 +36,3 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
-
*.data filter=lfs diff=lfs merge=lfs -text
|
| 37 |
-
*.metadata filter=lfs diff=lfs merge=lfs -text
|
|
|
|
| 1 |
+
*.data filter=lfs diff=lfs merge=lfs -text
|
| 2 |
+
*.metadata filter=lfs diff=lfs merge=lfs -text
|
| 3 |
+
# Default
|
| 4 |
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 5 |
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 6 |
*.bin filter=lfs diff=lfs merge=lfs -text
|
|
|
|
| 36 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 37 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 38 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
README.md
CHANGED
|
@@ -1,3 +1,39 @@
|
|
| 1 |
-
---
|
| 2 |
-
|
| 3 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
library_name: transformers
|
| 5 |
+
pipeline_tag: automatic-speech-recognition
|
| 6 |
+
license: apache-2.0
|
| 7 |
+
tags:
|
| 8 |
+
- speech-recognition
|
| 9 |
+
- zipformer
|
| 10 |
+
- streaming
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
|
| 14 |
+
|
| 15 |
+
|
| 16 |
+
## Model Description
|
| 17 |
+
|
| 18 |
+
A faster and better encoder for automatic speech recognition
|
| 19 |
+
|
| 20 |
+
## Intended Uses
|
| 21 |
+
|
| 22 |
+
Low latency speech recognition tasks, especially in streaming scenarios.
|
| 23 |
+
|
| 24 |
+
## Limitations
|
| 25 |
+
|
| 26 |
+
Single language, no LLM corrector
|
| 27 |
+
|
| 28 |
+
|
| 29 |
+
## Model Description
|
| 30 |
+
|
| 31 |
+
A faster and better encoder for automatic speech recognition
|
| 32 |
+
|
| 33 |
+
## Intended Uses
|
| 34 |
+
|
| 35 |
+
Low latency speech recognition tasks, especially in streaming scenarios.
|
| 36 |
+
|
| 37 |
+
## Limitations
|
| 38 |
+
|
| 39 |
+
Single language, no LLM corrector
|
hfup.config.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"$schema": "https://unpkg.com/hfup@latest/dist/json-schema.json",
|
| 3 |
+
"lfs": {
|
| 4 |
+
"withDefault": true,
|
| 5 |
+
"extraGlobs": [
|
| 6 |
+
"*.data",
|
| 7 |
+
"*.metadata"
|
| 8 |
+
]
|
| 9 |
+
},
|
| 10 |
+
"modelCard": {
|
| 11 |
+
"title": "Zipformer (2025-02-10)",
|
| 12 |
+
"language": ["en"],
|
| 13 |
+
"library_name": "transformers",
|
| 14 |
+
"pipeline_tag": "automatic-speech-recognition",
|
| 15 |
+
"license": "apache-2.0",
|
| 16 |
+
"tags": ["speech-recognition", "zipformer", "streaming"],
|
| 17 |
+
"sections": {
|
| 18 |
+
"model_description": "A faster and better encoder for automatic speech recognition",
|
| 19 |
+
"intended_uses": "Low latency speech recognition tasks, especially in streaming scenarios.",
|
| 20 |
+
"limitations": "Single language, no LLM corrector"
|
| 21 |
+
}
|
| 22 |
+
}
|
| 23 |
+
}
|