Daporte commited on
Commit
7fc61e7
·
verified ·
1 Parent(s): 9558cab

Add venv files

Browse files
Files changed (2) hide show
  1. poetry.lock +0 -0
  2. pyproject.toml +40 -0
poetry.lock ADDED
The diff for this file is too large to render. See raw diff
 
pyproject.toml ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ [project]
3
+ name = "interspeech-clean-repro-final"
4
+ version = "0.1.0"
5
+ description = ""
6
+ authors = [
7
+ {name = "David Portes",email = "[email protected]"}
8
+ ]
9
+ readme = "README.md"
10
+
11
+
12
+ [tool.poetry.dependencies]
13
+ python = "^3.12"
14
+ scipy = "^1.14.1"
15
+ librosa = "0.9.0"
16
+ soundfile = "^0.12.1"
17
+ amfm-decompy = "^1.0.11"
18
+ matplotlib = "^3.9.2"
19
+ tqdm = "^4.66.6"
20
+ praat-parselmouth = "^0.4.3"
21
+ numba = "^0.61.0"
22
+
23
+
24
+ torch = {version = "^2.5.1+cu118", source = "pytorch"}
25
+ llvmlite = "^0.44.0"
26
+ transformers = "^4.52.4"
27
+ datasets = "^3.6.0"
28
+ soxr = "^0.5.0.post1"
29
+
30
+
31
+ [build-system]
32
+ requires = ["poetry-core"]
33
+ build-backend = "poetry.core.masonry.api"
34
+
35
+ [[tool.poetry.source]]
36
+ name = "pytorch"
37
+ url = "https://download.pytorch.org/whl/cu118"
38
+ priority = "explicit"
39
+
40
+