Peeble commited on
Commit
79e5e0f
·
verified ·
1 Parent(s): 57524e6

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +67 -61
requirements.txt CHANGED
@@ -1,38 +1,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  blis==0.7.9
2
- cachetools==5.3.1
3
  catalogue==2.0.8
4
- certifi==2023.5.7
5
- charset-normalizer==3.1.0
6
- click==8.1.3
7
- cmake==3.26.3
8
  confection==0.0.4
9
  cymem==2.0.7
10
- decorator==4.4.2
11
- ffmpeg-python==0.2.0
12
- filelock==3.12.0
13
- future==0.18.3
14
- google-api-core==2.11.0
15
- google-auth==2.19.1
16
- google-cloud-core==2.3.2
17
- google-cloud-speech==2.20.0
 
 
18
  google-cloud-texttospeech==2.14.1
19
  google-cloud-translate==3.11.1
 
 
 
20
  googleapis-common-protos==1.59.0
21
  grpcio==1.54.2
22
  grpcio-status==1.54.2
 
 
 
 
 
 
 
 
 
 
 
23
  idna==3.4
24
- imageio==2.30.0
25
- imageio-ffmpeg==0.4.8
 
 
 
 
 
 
 
26
  Jinja2==3.1.2
27
- langcodes==3.3.0
28
- lit==16.0.5.post0
29
- llvmlite==0.39.1
30
  MarkupSafe==2.1.3
31
- more-itertools==9.1.0
32
- moviepy==1.0.3
33
  mpmath==1.3.0
34
- murmurhash==1.0.9
35
- networkx==3.1
 
36
  nvidia-cublas-cu11==11.10.3.66
37
  nvidia-cuda-cupti-cu11==11.7.101
38
  nvidia-cuda-nvrtc-cu11==11.7.99
@@ -44,42 +89,3 @@ nvidia-cusolver-cu11==11.4.0.1
44
  nvidia-cusparse-cu11==11.7.4.91
45
  nvidia-nccl-cu11==2.14.3
46
  nvidia-nvtx-cu11==11.7.91
47
- openai-whisper==20230314
48
- packaging==23.1
49
- pathy==0.10.1
50
- Pillow==9.5.0
51
- preshed==3.0.8
52
- proglog==0.1.10
53
- proto-plus==1.22.2
54
- protobuf==4.23.2
55
- pyasn1==0.5.0
56
- pyasn1-modules==0.3.0
57
- pydantic==1.10.8
58
- pydub==0.25.1
59
- pyphen==0.14.0
60
- regex==2023.6.3
61
- requests==2.31.0
62
- rsa==4.9
63
- six==1.16.0
64
- smart-open==6.3.0
65
- spacy==3.5.3
66
- spacy-legacy==3.0.12
67
- spacy-loggers==1.0.4
68
- spacy-syllables==3.0.2
69
- srsly==2.4.6
70
- sympy==1.12
71
- thinc==8.1.10
72
- tiktoken==0.3.1
73
- torch==2.0.1
74
- tqdm==4.65.0
75
- triton==2.0.0
76
- typer==0.7.0
77
- typing_extensions==4.6.3
78
- urllib3==1.26.16
79
- wasabi==1.1.1
80
- numba==0.56.4
81
- numpy==1.23.5
82
- uvicorn[standard]
83
- transformers
84
- datasets
85
- soundfile
 
1
+ # Core
2
+ numpy==1.23.5
3
+ typing_extensions==4.6.3
4
+ packaging==23.1
5
+
6
+ # Audio / video
7
+ pydub==0.25.1
8
+ moviepy==1.0.3
9
+ imageio==2.30.0
10
+ imageio-ffmpeg==0.4.8
11
+ ffmpeg-python==0.2.0
12
+
13
+ # Whisper (OpenAI implementation)
14
+ openai-whisper==20230314
15
+ torch==2.0.1
16
+ triton==2.0.0
17
+ numba==0.56.4
18
+ llvmlite==0.39.1
19
+
20
+ # Hugging Face (optional, only if you want HF Whisper)
21
+ transformers
22
+ datasets
23
+ soundfile
24
+ tiktoken==0.3.1
25
+
26
+ # SpaCy + syllables
27
+ spacy==3.5.3
28
+ spacy-legacy==3.0.12
29
+ spacy-loggers==1.0.4
30
+ spacy-syllables==3.0.2
31
  blis==0.7.9
 
32
  catalogue==2.0.8
 
 
 
 
33
  confection==0.0.4
34
  cymem==2.0.7
35
+ langcodes==3.3.0
36
+ murmurhash==1.0.9
37
+ pathy==0.10.1
38
+ preshed==3.0.8
39
+ srsly==2.4.6
40
+ thinc==8.1.10
41
+ wasabi==1.1.1
42
+ pyphen==0.14.0
43
+
44
+ # Google Cloud + auth stack
45
  google-cloud-texttospeech==2.14.1
46
  google-cloud-translate==3.11.1
47
+ google-cloud-core==2.3.2
48
+ google-api-core==2.11.0
49
+ google-auth==2.19.1
50
  googleapis-common-protos==1.59.0
51
  grpcio==1.54.2
52
  grpcio-status==1.54.2
53
+ proto-plus==1.22.2
54
+ protobuf==4.23.2
55
+ rsa==4.9
56
+ cachetools==5.3.1
57
+ pyasn1==0.5.0
58
+ pyasn1-modules==0.3.0
59
+
60
+ # HTTP / utils
61
+ requests==2.31.0
62
+ urllib3==1.26.16
63
+ charset-normalizer==3.1.0
64
  idna==3.4
65
+ certifi==2023.5.7
66
+ six==1.16.0
67
+ smart-open==6.3.0
68
+ filelock==3.12.0
69
+ tqdm==4.65.0
70
+ decorator==4.4.2
71
+ future==0.18.3
72
+ more-itertools==9.1.0
73
+ networkx==3.1
74
  Jinja2==3.1.2
 
 
 
75
  MarkupSafe==2.1.3
76
+ sympy==1.12
 
77
  mpmath==1.3.0
78
+ typer==0.7.0
79
+
80
+ # NVIDIA CUDA (optional – only if you actually use GPU builds)
81
  nvidia-cublas-cu11==11.10.3.66
82
  nvidia-cuda-cupti-cu11==11.7.101
83
  nvidia-cuda-nvrtc-cu11==11.7.99
 
89
  nvidia-cusparse-cu11==11.7.4.91
90
  nvidia-nccl-cu11==2.14.3
91
  nvidia-nvtx-cu11==11.7.91