Bisher commited on
Commit
b934afb
·
verified ·
1 Parent(s): baacc54

Add space files

Browse files
Files changed (3) hide show
  1. app.py +29 -0
  2. packages.txt +1 -0
  3. requirements.txt +555 -0
app.py ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from transformers import Wav2Vec2Processor, Wav2Vec2ForCTC
2
+ import torch
3
+ import gradio as gr
4
+ import librosa
5
+
6
+ # load model and processor
7
+ processor = Wav2Vec2Processor.from_pretrained("facebook/wav2vec2-lv-60-espeak-cv-ft")
8
+ model = Wav2Vec2ForCTC.from_pretrained("facebook/wav2vec2-lv-60-espeak-cv-ft")
9
+
10
+ # define prediction function
11
+ def audio2phoneme(audio_path):
12
+ audio, sr = librosa.load(audio_path, sr=16000)
13
+ input_values = processor(audio, return_tensors="pt", padding=True).input_values
14
+ with torch.no_grad():
15
+ logits = model(input_values).logits
16
+ predicted_ids = torch.argmax(logits, dim=-1)
17
+ transcription = processor.batch_decode(predicted_ids)
18
+ return ' '.join(transcription)
19
+
20
+ app = gr.Interface(
21
+ fn=audio2phoneme,
22
+ inputs=gr.Audio(sources=["upload","microphone"], type="filepath"),
23
+ outputs=gr.Textbox(label="Phoneme Transcription", show_copy_button=True, show_label=True),
24
+ description="Get phonemes from audio",
25
+ title="Audio to Phoneme Transcription using facebook/wav2vec2-lv-60-espeak-cv",
26
+ )
27
+
28
+ # start space
29
+ app.launch(share=True)
packages.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ espeak
requirements.txt ADDED
@@ -0,0 +1,555 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ absl-py==1.4.0
2
+ accelerate==0.34.2
3
+ aiofiles==23.2.1
4
+ aiohappyeyeballs==2.4.3
5
+ aiohttp==3.10.10
6
+ aiosignal==1.3.1
7
+ alabaster==0.7.16
8
+ albucore==0.0.16
9
+ albumentations==1.4.15
10
+ altair==4.2.2
11
+ annotated-types==0.7.0
12
+ anyio==3.7.1
13
+ argon2-cffi==23.1.0
14
+ argon2-cffi-bindings==21.2.0
15
+ array_record==0.5.1
16
+ arviz==0.19.0
17
+ astropy==6.1.4
18
+ astropy-iers-data==0.2024.10.21.0.33.21
19
+ astunparse==1.6.3
20
+ async-timeout==4.0.3
21
+ atpublic==4.1.0
22
+ attrs==24.2.0
23
+ audioread==3.0.1
24
+ autograd==1.7.0
25
+ babel==2.16.0
26
+ backcall==0.2.0
27
+ beautifulsoup4==4.12.3
28
+ bibtexparser==2.0.0b7
29
+ bigframes==1.22.0
30
+ bigquery-magics==0.4.0
31
+ bleach==6.1.0
32
+ blinker==1.4
33
+ blis==0.7.11
34
+ blosc2==2.0.0
35
+ bokeh==3.4.3
36
+ Bottleneck==1.4.2
37
+ bqplot==0.12.43
38
+ branca==0.8.0
39
+ CacheControl==0.14.0
40
+ cachetools==5.5.0
41
+ catalogue==2.0.10
42
+ certifi==2024.8.30
43
+ cffi==1.17.1
44
+ chardet==5.2.0
45
+ charset-normalizer==3.4.0
46
+ chex==0.1.87
47
+ clarabel==0.9.0
48
+ click==8.1.7
49
+ clldutils==3.23.1
50
+ cloudpathlib==0.20.0
51
+ cloudpickle==3.1.0
52
+ cmake==3.30.5
53
+ cmdstanpy==1.2.4
54
+ colorama==0.4.6
55
+ colorcet==3.1.0
56
+ colorlog==6.8.2
57
+ colorlover==0.3.0
58
+ colour==0.1.5
59
+ community==1.0.0b1
60
+ confection==0.1.5
61
+ cons==0.4.6
62
+ contourpy==1.3.0
63
+ cryptography==43.0.3
64
+ csvw==3.5.1
65
+ cuda-python==12.2.1
66
+ cudf-cu12 @ https://pypi.nvidia.com/cudf-cu12/cudf_cu12-24.10.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
67
+ cufflinks==0.17.3
68
+ cupy-cuda12x==12.2.0
69
+ cvxopt==1.3.2
70
+ cvxpy==1.5.3
71
+ cycler==0.12.1
72
+ cymem==2.0.8
73
+ Cython==3.0.11
74
+ dask==2024.8.2
75
+ datascience==0.17.6
76
+ datasets==3.0.2
77
+ db-dtypes==1.3.0
78
+ dbus-python==1.2.18
79
+ debugpy==1.6.6
80
+ decorator==4.4.2
81
+ defusedxml==0.7.1
82
+ Deprecated==1.2.14
83
+ diffusers==0.30.3
84
+ dill==0.3.8
85
+ distro==1.7.0
86
+ dlib==19.24.2
87
+ dlinfo==1.2.1
88
+ dm-tree==0.1.8
89
+ docker-pycreds==0.4.0
90
+ docstring_parser==0.16
91
+ docutils==0.18.1
92
+ dopamine_rl==4.0.9
93
+ duckdb==1.1.2
94
+ earthengine-api==1.0.0
95
+ easydict==1.13
96
+ ecos==2.0.14
97
+ editdistance==0.8.1
98
+ eerepr==0.0.4
99
+ einops==0.8.0
100
+ en-core-web-sm @ https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-3.7.1/en_core_web_sm-3.7.1-py3-none-any.whl#sha256=86cc141f63942d4b2c5fcee06630fd6f904788d2f0ab005cce45aadb8fb73889
101
+ entrypoints==0.4
102
+ et-xmlfile==1.1.0
103
+ etils==1.10.0
104
+ etuples==0.3.9
105
+ eval_type_backport==0.2.0
106
+ exceptiongroup==1.2.2
107
+ fastai==2.7.18
108
+ fastapi==0.115.4
109
+ fastcore==1.7.19
110
+ fastdownload==0.0.7
111
+ fastjsonschema==2.20.0
112
+ fastprogress==1.0.3
113
+ fastrlock==0.8.2
114
+ ffmpy==0.4.0
115
+ filelock==3.16.1
116
+ firebase-admin==6.5.0
117
+ Flask==2.2.5
118
+ flatbuffers==24.3.25
119
+ flax==0.8.5
120
+ folium==0.17.0
121
+ fonttools==4.54.1
122
+ frozendict==2.4.6
123
+ frozenlist==1.4.1
124
+ fsspec==2024.6.1
125
+ future==1.0.0
126
+ gast==0.6.0
127
+ gcsfs==2024.6.1
128
+ GDAL==3.6.4
129
+ gdown==5.2.0
130
+ geemap==0.34.5
131
+ gensim==4.3.3
132
+ geocoder==1.38.1
133
+ geographiclib==2.0
134
+ geopandas==1.0.1
135
+ geopy==2.4.1
136
+ gin-config==0.5.0
137
+ gitdb==4.0.11
138
+ GitPython==3.1.43
139
+ glob2==0.7
140
+ google==2.0.3
141
+ google-ai-generativelanguage==0.6.10
142
+ google-api-core==2.19.2
143
+ google-api-python-client==2.137.0
144
+ google-auth==2.27.0
145
+ google-auth-httplib2==0.2.0
146
+ google-auth-oauthlib==1.2.1
147
+ google-cloud-aiplatform==1.70.0
148
+ google-cloud-bigquery==3.25.0
149
+ google-cloud-bigquery-connection==1.15.5
150
+ google-cloud-bigquery-storage==2.27.0
151
+ google-cloud-bigtable==2.26.0
152
+ google-cloud-core==2.4.1
153
+ google-cloud-datastore==2.19.0
154
+ google-cloud-firestore==2.16.1
155
+ google-cloud-functions==1.16.5
156
+ google-cloud-iam==2.15.2
157
+ google-cloud-language==2.13.4
158
+ google-cloud-pubsub==2.25.0
159
+ google-cloud-resource-manager==1.12.5
160
+ google-cloud-storage==2.8.0
161
+ google-cloud-translate==3.15.5
162
+ google-colab @ file:///colabtools/dist/google_colab-1.0.0.tar.gz
163
+ google-crc32c==1.6.0
164
+ google-generativeai==0.8.3
165
+ google-pasta==0.2.0
166
+ google-resumable-media==2.7.2
167
+ googleapis-common-protos==1.65.0
168
+ googledrivedownloader==0.4
169
+ gradio==5.4.0
170
+ gradio_client==1.4.2
171
+ graphviz==0.20.3
172
+ greenlet==3.1.1
173
+ grpc-google-iam-v1==0.13.1
174
+ grpcio==1.64.1
175
+ grpcio-status==1.48.2
176
+ gspread==6.0.2
177
+ gspread-dataframe==3.3.1
178
+ gym==0.25.2
179
+ gym-notices==0.0.8
180
+ h11==0.14.0
181
+ h5netcdf==1.4.0
182
+ h5py==3.11.0
183
+ holidays==0.59
184
+ holoviews==1.19.1
185
+ html5lib==1.1
186
+ httpcore==1.0.6
187
+ httpimport==1.4.0
188
+ httplib2==0.22.0
189
+ httpx==0.27.2
190
+ huggingface-hub==0.26.1
191
+ humanize==4.10.0
192
+ hyperopt==0.2.7
193
+ ibis-framework==9.2.0
194
+ idna==3.10
195
+ imageio==2.35.1
196
+ imageio-ffmpeg==0.5.1
197
+ imagesize==1.4.1
198
+ imbalanced-learn==0.12.4
199
+ imgaug==0.4.0
200
+ immutabledict==4.2.0
201
+ importlib_metadata==8.5.0
202
+ importlib_resources==6.4.5
203
+ imutils==0.5.4
204
+ inflect==7.4.0
205
+ iniconfig==2.0.0
206
+ intel-cmplr-lib-ur==2024.2.1
207
+ intel-openmp==2024.2.1
208
+ ipyevents==2.0.2
209
+ ipyfilechooser==0.6.0
210
+ ipykernel==5.5.6
211
+ ipyleaflet==0.19.2
212
+ ipyparallel==8.8.0
213
+ ipython==7.34.0
214
+ ipython-genutils==0.2.0
215
+ ipython-sql==0.5.0
216
+ ipytree==0.2.2
217
+ ipywidgets==7.7.1
218
+ isodate==0.7.2
219
+ itsdangerous==2.2.0
220
+ jax==0.4.33
221
+ jax-cuda12-pjrt==0.4.33
222
+ jax-cuda12-plugin==0.4.33
223
+ jaxlib==0.4.33
224
+ jeepney==0.7.1
225
+ jellyfish==1.1.0
226
+ jieba==0.42.1
227
+ Jinja2==3.1.4
228
+ joblib==1.4.2
229
+ jsonpickle==3.3.0
230
+ jsonschema==4.23.0
231
+ jsonschema-specifications==2024.10.1
232
+ jupyter-client==6.1.12
233
+ jupyter-console==6.1.0
234
+ jupyter-leaflet==0.19.2
235
+ jupyter-server==1.24.0
236
+ jupyter_core==5.7.2
237
+ jupyterlab_pygments==0.3.0
238
+ jupyterlab_widgets==3.0.13
239
+ kaggle==1.6.17
240
+ kagglehub==0.3.3
241
+ keras==3.4.1
242
+ keyring==23.5.0
243
+ kiwisolver==1.4.7
244
+ langcodes==3.4.1
245
+ language-tags==1.2.0
246
+ language_data==1.2.0
247
+ launchpadlib==1.10.16
248
+ lazr.restfulclient==0.14.4
249
+ lazr.uri==1.0.6
250
+ lazy_loader==0.4
251
+ libclang==18.1.1
252
+ libcudf-cu12 @ https://pypi.nvidia.com/libcudf-cu12/libcudf_cu12-24.10.1-py3-none-manylinux_2_28_x86_64.whl
253
+ librosa==0.10.2.post1
254
+ lightgbm==4.5.0
255
+ linkify-it-py==2.0.3
256
+ llvmlite==0.43.0
257
+ locket==1.0.0
258
+ logical-unification==0.4.6
259
+ lxml==4.9.4
260
+ marisa-trie==1.2.1
261
+ Markdown==3.7
262
+ markdown-it-py==3.0.0
263
+ MarkupSafe==2.1.5
264
+ matplotlib==3.7.1
265
+ matplotlib-inline==0.1.7
266
+ matplotlib-venn==1.1.1
267
+ mdit-py-plugins==0.4.2
268
+ mdurl==0.1.2
269
+ miniKanren==1.0.3
270
+ missingno==0.5.2
271
+ mistune==0.8.4
272
+ mizani==0.11.4
273
+ mkl==2024.2.2
274
+ ml-dtypes==0.4.1
275
+ mlxtend==0.23.1
276
+ more-itertools==10.5.0
277
+ moviepy==1.0.3
278
+ mpmath==1.3.0
279
+ msgpack==1.1.0
280
+ multidict==6.1.0
281
+ multipledispatch==1.0.0
282
+ multiprocess==0.70.16
283
+ multitasking==0.0.11
284
+ murmurhash==1.0.10
285
+ music21==9.1.0
286
+ namex==0.0.8
287
+ natsort==8.4.0
288
+ nbclassic==1.1.0
289
+ nbclient==0.10.0
290
+ nbconvert==6.5.4
291
+ nbformat==5.10.4
292
+ nest-asyncio==1.6.0
293
+ networkx==3.4.2
294
+ nibabel==5.2.1
295
+ nltk==3.8.1
296
+ notebook==6.5.5
297
+ notebook_shim==0.2.4
298
+ numba==0.60.0
299
+ numexpr==2.10.1
300
+ numpy==1.26.4
301
+ nvidia-cublas-cu12==12.6.3.3
302
+ nvidia-cuda-cupti-cu12==12.6.80
303
+ nvidia-cuda-nvcc-cu12==12.6.77
304
+ nvidia-cuda-runtime-cu12==12.6.77
305
+ nvidia-cudnn-cu12==9.5.0.50
306
+ nvidia-cufft-cu12==11.3.0.4
307
+ nvidia-curand-cu12==10.3.7.77
308
+ nvidia-cusolver-cu12==11.7.1.2
309
+ nvidia-cusparse-cu12==12.5.4.2
310
+ nvidia-nccl-cu12==2.23.4
311
+ nvidia-nvjitlink-cu12==12.6.77
312
+ nvtx==0.2.10
313
+ nx-cugraph-cu12 @ https://pypi.nvidia.com/nx-cugraph-cu12/nx_cugraph_cu12-24.10.0-py3-none-any.whl
314
+ oauth2client==4.1.3
315
+ oauthlib==3.2.2
316
+ opencv-contrib-python==4.10.0.84
317
+ opencv-python==4.10.0.84
318
+ opencv-python-headless==4.10.0.84
319
+ openpyxl==3.1.5
320
+ opentelemetry-api==1.16.0
321
+ opentelemetry-sdk==1.16.0
322
+ opentelemetry-semantic-conventions==0.37b0
323
+ opt_einsum==3.4.0
324
+ optax==0.2.3
325
+ optree==0.13.0
326
+ orbax-checkpoint==0.6.4
327
+ orjson==3.10.10
328
+ osqp==0.6.7.post3
329
+ packaging==24.1
330
+ pandas==2.2.2
331
+ pandas-datareader==0.10.0
332
+ pandas-gbq==0.23.2
333
+ pandas-stubs==2.2.2.240909
334
+ pandocfilters==1.5.1
335
+ panel==1.4.5
336
+ param==2.1.1
337
+ parso==0.8.4
338
+ parsy==2.1
339
+ partd==1.4.2
340
+ pathlib==1.0.1
341
+ patsy==0.5.6
342
+ peewee==3.17.7
343
+ pexpect==4.9.0
344
+ phonemizer==3.3.0
345
+ pickleshare==0.7.5
346
+ pillow==10.4.0
347
+ platformdirs==4.3.6
348
+ plotly==5.24.1
349
+ plotnine==0.13.6
350
+ pluggy==1.5.0
351
+ polars==1.7.1
352
+ pooch==1.8.2
353
+ portpicker==1.5.2
354
+ preshed==3.0.9
355
+ prettytable==3.11.0
356
+ proglog==0.1.10
357
+ progressbar2==4.5.0
358
+ prometheus_client==0.21.0
359
+ promise==2.3
360
+ prompt_toolkit==3.0.48
361
+ propcache==0.2.0
362
+ prophet==1.1.6
363
+ proto-plus==1.24.0
364
+ protobuf==3.20.3
365
+ psutil==5.9.5
366
+ psycopg2==2.9.10
367
+ ptyprocess==0.7.0
368
+ py-cpuinfo==9.0.0
369
+ py4j==0.10.9.7
370
+ pyarrow==16.1.0
371
+ pyarrow-hotfix==0.6
372
+ pyasn1==0.6.1
373
+ pyasn1_modules==0.4.1
374
+ pycocotools==2.0.8
375
+ pycparser==2.22
376
+ pydantic==2.9.2
377
+ pydantic_core==2.23.4
378
+ pydata-google-auth==1.8.2
379
+ pydot==3.0.2
380
+ pydotplus==2.0.2
381
+ PyDrive==1.3.1
382
+ PyDrive2==1.20.0
383
+ pydub==0.25.1
384
+ pyerfa==2.0.1.4
385
+ pygame==2.6.1
386
+ pygit2==1.15.1
387
+ Pygments==2.18.0
388
+ PyGObject==3.42.1
389
+ PyJWT==2.9.0
390
+ pylatexenc==2.10
391
+ pylibcudf-cu12 @ https://pypi.nvidia.com/pylibcudf-cu12/pylibcudf_cu12-24.10.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
392
+ pylibcugraph-cu12==24.10.0
393
+ pylibraft-cu12==24.10.0
394
+ pymc==5.16.2
395
+ pymystem3==0.2.0
396
+ pynvjitlink-cu12==0.3.0
397
+ pyogrio==0.10.0
398
+ PyOpenGL==3.1.7
399
+ pyOpenSSL==24.2.1
400
+ pyparsing==3.2.0
401
+ pyperclip==1.9.0
402
+ pyproj==3.7.0
403
+ pyshp==2.3.1
404
+ PySocks==1.7.1
405
+ pyspark==3.5.3
406
+ pytensor==2.25.5
407
+ pytest==7.4.4
408
+ python-apt==0.0.0
409
+ python-box==7.2.0
410
+ python-dateutil==2.8.2
411
+ python-louvain==0.16
412
+ python-multipart==0.0.12
413
+ python-slugify==8.0.4
414
+ python-utils==3.9.0
415
+ pytz==2024.2
416
+ pyviz_comms==3.0.3
417
+ PyYAML==6.0.2
418
+ pyzmq==24.0.1
419
+ qdldl==0.1.7.post4
420
+ ratelim==0.1.6
421
+ rdflib==7.1.1
422
+ referencing==0.35.1
423
+ regex==2024.9.11
424
+ requests==2.32.3
425
+ requests-oauthlib==1.3.1
426
+ requirements-parser==0.9.0
427
+ rfc3986==1.5.0
428
+ rich==13.9.3
429
+ rmm-cu12==24.10.0
430
+ rpds-py==0.20.0
431
+ rpy2==3.4.2
432
+ rsa==4.9
433
+ ruff==0.7.1
434
+ safehttpx==0.1.1
435
+ safetensors==0.4.5
436
+ scikit-image==0.24.0
437
+ scikit-learn==1.5.2
438
+ scipy==1.13.1
439
+ scooby==0.10.0
440
+ scs==3.2.7
441
+ seaborn==0.13.2
442
+ SecretStorage==3.3.1
443
+ segments==2.2.1
444
+ semantic-version==2.10.0
445
+ Send2Trash==1.8.3
446
+ sentencepiece==0.2.0
447
+ sentry-sdk==2.17.0
448
+ setproctitle==1.3.3
449
+ shap==0.46.0
450
+ shapely==2.0.6
451
+ shellingham==1.5.4
452
+ simple-parsing==0.1.6
453
+ six==1.16.0
454
+ sklearn-pandas==2.2.0
455
+ slicer==0.0.8
456
+ smart-open==7.0.5
457
+ smmap==5.0.1
458
+ sniffio==1.3.1
459
+ snowballstemmer==2.2.0
460
+ soundfile==0.12.1
461
+ soupsieve==2.6
462
+ soxr==0.5.0.post1
463
+ spacy==3.7.5
464
+ spacy-legacy==3.0.12
465
+ spacy-loggers==1.0.5
466
+ Sphinx==5.0.2
467
+ sphinxcontrib-applehelp==2.0.0
468
+ sphinxcontrib-devhelp==2.0.0
469
+ sphinxcontrib-htmlhelp==2.1.0
470
+ sphinxcontrib-jsmath==1.0.1
471
+ sphinxcontrib-qthelp==2.0.0
472
+ sphinxcontrib-serializinghtml==2.0.0
473
+ SQLAlchemy==2.0.36
474
+ sqlglot==25.1.0
475
+ sqlparse==0.5.1
476
+ srsly==2.4.8
477
+ stanio==0.5.1
478
+ starlette==0.41.2
479
+ statsmodels==0.14.4
480
+ StrEnum==0.4.15
481
+ sympy==1.13.1
482
+ tables==3.8.0
483
+ tabulate==0.9.0
484
+ tbb==2021.13.1
485
+ tenacity==9.0.0
486
+ tensorboard==2.17.0
487
+ tensorboard-data-server==0.7.2
488
+ tensorflow==2.17.0
489
+ tensorflow-datasets==4.9.6
490
+ tensorflow-hub==0.16.1
491
+ tensorflow-io-gcs-filesystem==0.37.1
492
+ tensorflow-metadata==1.16.1
493
+ tensorflow-probability==0.24.0
494
+ tensorstore==0.1.66
495
+ termcolor==2.5.0
496
+ terminado==0.18.1
497
+ text-unidecode==1.3
498
+ textblob==0.17.1
499
+ tf-slim==1.1.0
500
+ tf_keras==2.17.0
501
+ thinc==8.2.5
502
+ threadpoolctl==3.5.0
503
+ tifffile==2024.9.20
504
+ timm==1.0.11
505
+ tinycss2==1.3.0
506
+ tokenizers==0.19.1
507
+ toml==0.10.2
508
+ tomli==2.0.2
509
+ tomlkit==0.12.0
510
+ toolz==0.12.1
511
+ torch @ https://download.pytorch.org/whl/cu121_full/torch-2.5.0%2Bcu121-cp310-cp310-linux_x86_64.whl
512
+ torchaudio @ https://download.pytorch.org/whl/cu121_full/torchaudio-2.5.0%2Bcu121-cp310-cp310-linux_x86_64.whl
513
+ torchsummary==1.5.1
514
+ torchvision @ https://download.pytorch.org/whl/cu121_full/torchvision-0.20.0%2Bcu121-cp310-cp310-linux_x86_64.whl
515
+ tornado==6.3.3
516
+ tqdm==4.66.5
517
+ traitlets==5.7.1
518
+ traittypes==0.2.1
519
+ transformers==4.44.2
520
+ tweepy==4.14.0
521
+ typeguard==4.3.0
522
+ typer==0.12.5
523
+ types-pytz==2024.2.0.20241003
524
+ types-setuptools==75.2.0.20241019
525
+ typing_extensions==4.12.2
526
+ tzdata==2024.2
527
+ tzlocal==5.2
528
+ uc-micro-py==1.0.3
529
+ uritemplate==4.1.1
530
+ urllib3==2.2.3
531
+ uvicorn==0.32.0
532
+ vega-datasets==0.9.0
533
+ wadllib==1.3.6
534
+ wandb==0.18.5
535
+ wasabi==1.1.3
536
+ wcwidth==0.2.13
537
+ weasel==0.4.1
538
+ webcolors==24.8.0
539
+ webencodings==0.5.1
540
+ websocket-client==1.8.0
541
+ websockets==12.0
542
+ Werkzeug==3.0.4
543
+ widgetsnbextension==3.6.10
544
+ wordcloud==1.9.3
545
+ wrapt==1.16.0
546
+ xarray==2024.9.0
547
+ xarray-einstats==0.8.0
548
+ xgboost==2.1.1
549
+ xlrd==2.0.1
550
+ xxhash==3.5.0
551
+ xyzservices==2024.9.0
552
+ yarl==1.16.0
553
+ yellowbrick==1.5
554
+ yfinance==0.2.46
555
+ zipp==3.20.2