Commit
·
9faef73
0
Parent(s):
Bootstrap project from uv
Browse files- .python-version +1 -0
- README.md +5 -0
- pyproject.toml +7 -0
- run.py +6 -0
.python-version
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
3.10
|
README.md
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Parakeet TDT 0.6B v2
|
2 |
+
|
3 |
+
> HuggingFace example space
|
4 |
+
|
5 |
+
Under construction
|
pyproject.toml
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[project]
|
2 |
+
name = "parakeet-tdt-0-6b-v2"
|
3 |
+
version = "0.1.0"
|
4 |
+
description = "Huggingface Space to test NVIDIA Nemo's Parakeet v2 speech recognition model."
|
5 |
+
readme = "README.md"
|
6 |
+
requires-python = ">=3.10"
|
7 |
+
dependencies = []
|
run.py
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
def main():
|
2 |
+
print("Hello from parakeet-tdt-0-6b-v2!")
|
3 |
+
|
4 |
+
|
5 |
+
if __name__ == "__main__":
|
6 |
+
main()
|