Initalize project
Browse files- .gitignore +10 -0
- pyproject.toml +18 -0
.gitignore
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Python-generated files
|
| 2 |
+
__pycache__/
|
| 3 |
+
*.py[oc]
|
| 4 |
+
build/
|
| 5 |
+
dist/
|
| 6 |
+
wheels/
|
| 7 |
+
*.egg-info
|
| 8 |
+
|
| 9 |
+
# Virtual environments
|
| 10 |
+
.venv
|
pyproject.toml
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[project]
|
| 2 |
+
name = "speech-to-text"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
description = "Add your description here"
|
| 5 |
+
readme = "README.md"
|
| 6 |
+
requires-python = ">=3.10"
|
| 7 |
+
dependencies = [
|
| 8 |
+
"torch>=2.0",
|
| 9 |
+
"torchaudio>=2.0",
|
| 10 |
+
"transformers>=4.40",
|
| 11 |
+
"datasets[audio]>=2.18",
|
| 12 |
+
"accelerate>=0.27",
|
| 13 |
+
"jiwer>=3.0",
|
| 14 |
+
"soundfile>=0.12",
|
| 15 |
+
"librosa>=0.10",
|
| 16 |
+
"onnx>=1.16",
|
| 17 |
+
"onnxruntime>=1.17",
|
| 18 |
+
]
|