anonymoussubmitter222 commited on
Commit
c237ceb
β€’
1 Parent(s): 8ae3bec

added description, title

Browse files
README.md CHANGED
@@ -1,3 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  # Overview
2
 
3
  This project aims to create an Automatic Speech Recognition (ASR) model dedicated for the Tunisian Arabic dialect. The goal is to improve speech recognition technology for underrepresented linguistic communities by transcribing Tunisian dialect speech into written text.
 
1
+ ---
2
+ title: Tunisian Speech Recognition
3
+ emoji: πŸŒ™
4
+ colorFrom: red
5
+ colorTo: white
6
+ sdk: gradio
7
+ sdk_version: 3.16.1
8
+ app_file: app.py
9
+ pinned: false
10
+ license: cc-by-nc-3.0
11
+ ---
12
+
13
+
14
  # Overview
15
 
16
  This project aims to create an Automatic Speech Recognition (ASR) model dedicated for the Tunisian Arabic dialect. The goal is to improve speech recognition technology for underrepresented linguistic communities by transcribing Tunisian dialect speech into written text.
app.py CHANGED
@@ -404,6 +404,33 @@ asr_brain = ASR(
404
  asr_brain.tokenizer = label_encoder
405
  asr_brain.checkpointer.recover_if_possible(device="cpu")
406
  asr_brain.modules.eval()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
407
 
408
  def treat_wav_file(file_mic,file_upload ,asr=asr_brain, device="cpu") :
409
  if (file_mic is not None) and (file_upload is not None):
@@ -422,6 +449,8 @@ def treat_wav_file(file_mic,file_upload ,asr=asr_brain, device="cpu") :
422
  return sentence
423
 
424
  gr.Interface(
 
 
425
  fn=treat_wav_file,
426
  inputs=[gr.Audio(source="microphone", type='filepath', label = "record", optional = True),
427
  gr.Audio(source="upload", type='filepath', label="filein", optional=True)]
 
404
  asr_brain.tokenizer = label_encoder
405
  asr_brain.checkpointer.recover_if_possible(device="cpu")
406
  asr_brain.modules.eval()
407
+ description = """This is a speechbrain-based Automatic Speech Recognition (ASR) model for Tunisian arabic. It outputs Tunisian Arabic transcriptions written in Arabic characters.
408
+ This model outputs transcriptions in arabic alphabet only and performs poorly with sentences containing foreign words. However if you do need code-switching in your transcripts, i.e. foreign outputs in latin alphabet, you would better use the code switched model, available in another space from the same author. (https://huggingface.co/SalahZa/Code_Switched_Tunisian_Speech_Recognition)
409
+
410
+ Run is done on CPU to keep it free in this space. This leads to quite long running times on long sequences. If for your project or research, you want to transcribe long sequences, you would better use the model directly from its page, some instructions for inference on a test set have been provided there. (https://huggingface.co/SalahZa/Tunisian_Automatic_Speech_Recognition). If you need help, feel free to drop an email here : zaiemsalah@gmail.com
411
+
412
+ Authors :
413
+ * [Salah Zaiem](https://fr.linkedin.com/in/salah-zaiem)
414
+ * [Ahmed Amine Ben Aballah](https://www.linkedin.com/in/aabenz/)
415
+ * [Ata Kaboudi](https://www.linkedin.com/in/ata-kaboudi-63365b1a8)
416
+ * [Amir Kanoun](https://tn.linkedin.com/in/ahmed-amir-kanoun)
417
+
418
+ More in-depth details and insights are available in a released preprint. Please find the paper [here](https://arxiv.org/abs/2309.11327).
419
+ If you use or refer to this model, please cite :
420
+
421
+ ```
422
+ @misc{abdallah2023leveraging,
423
+ title={Leveraging Data Collection and Unsupervised Learning for Code-switched Tunisian Arabic Automatic Speech Recognition},
424
+ author={Ahmed Amine Ben Abdallah and Ata Kabboudi and Amir Kanoun and Salah Zaiem},
425
+ year={2023},
426
+ eprint={2309.11327},
427
+ archivePrefix={arXiv},
428
+ primaryClass={eess.AS}
429
+ }
430
+
431
+
432
+ """
433
+ title = "Tunisian Speech Recognition"
434
 
435
  def treat_wav_file(file_mic,file_upload ,asr=asr_brain, device="cpu") :
436
  if (file_mic is not None) and (file_upload is not None):
 
449
  return sentence
450
 
451
  gr.Interface(
452
+ title = title,
453
+ description = description,
454
  fn=treat_wav_file,
455
  inputs=[gr.Audio(source="microphone", type='filepath', label = "record", optional = True),
456
  gr.Audio(source="upload", type='filepath', label="filein", optional=True)]
semi_wavlm_large_tunisian_ctc/1234/app.py CHANGED
@@ -404,6 +404,33 @@ asr_brain = ASR(
404
  asr_brain.tokenizer = label_encoder
405
  asr_brain.checkpointer.recover_if_possible(device="cpu")
406
  asr_brain.modules.eval()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
407
 
408
  def treat_wav_file(file_mic,file_upload ,asr=asr_brain, device="cpu") :
409
  if (file_mic is not None) and (file_upload is not None):
@@ -422,6 +449,8 @@ def treat_wav_file(file_mic,file_upload ,asr=asr_brain, device="cpu") :
422
  return sentence
423
 
424
  gr.Interface(
 
 
425
  fn=treat_wav_file,
426
  inputs=[gr.Audio(source="microphone", type='filepath', label = "record", optional = True),
427
  gr.Audio(source="upload", type='filepath', label="filein", optional=True)]
 
404
  asr_brain.tokenizer = label_encoder
405
  asr_brain.checkpointer.recover_if_possible(device="cpu")
406
  asr_brain.modules.eval()
407
+ description = """This is a speechbrain-based Automatic Speech Recognition (ASR) model for Tunisian arabic. It outputs Tunisian Arabic transcriptions written in Arabic characters.
408
+ This model outputs transcriptions in arabic alphabet only and performs poorly with sentences containing foreign words. However if you do need code-switching in your transcripts, i.e. foreign outputs in latin alphabet, you would better use the code switched model, available in another space from the same author. (https://huggingface.co/SalahZa/Code_Switched_Tunisian_Speech_Recognition)
409
+
410
+ Run is done on CPU to keep it free in this space. This leads to quite long running times on long sequences. If for your project or research, you want to transcribe long sequences, you would better use the model directly from its page, some instructions for inference on a test set have been provided there. (https://huggingface.co/SalahZa/Tunisian_Automatic_Speech_Recognition). If you need help, feel free to drop an email here : zaiemsalah@gmail.com
411
+
412
+ Authors :
413
+ * [Salah Zaiem](https://fr.linkedin.com/in/salah-zaiem)
414
+ * [Ahmed Amine Ben Aballah](https://www.linkedin.com/in/aabenz/)
415
+ * [Ata Kaboudi](https://www.linkedin.com/in/ata-kaboudi-63365b1a8)
416
+ * [Amir Kanoun](https://tn.linkedin.com/in/ahmed-amir-kanoun)
417
+
418
+ More in-depth details and insights are available in a released preprint. Please find the paper [here](https://arxiv.org/abs/2309.11327).
419
+ If you use or refer to this model, please cite :
420
+
421
+ ```
422
+ @misc{abdallah2023leveraging,
423
+ title={Leveraging Data Collection and Unsupervised Learning for Code-switched Tunisian Arabic Automatic Speech Recognition},
424
+ author={Ahmed Amine Ben Abdallah and Ata Kabboudi and Amir Kanoun and Salah Zaiem},
425
+ year={2023},
426
+ eprint={2309.11327},
427
+ archivePrefix={arXiv},
428
+ primaryClass={eess.AS}
429
+ }
430
+
431
+
432
+ """
433
+ title = "Tunisian Speech Recognition"
434
 
435
  def treat_wav_file(file_mic,file_upload ,asr=asr_brain, device="cpu") :
436
  if (file_mic is not None) and (file_upload is not None):
 
449
  return sentence
450
 
451
  gr.Interface(
452
+ title = title,
453
+ description = description,
454
  fn=treat_wav_file,
455
  inputs=[gr.Audio(source="microphone", type='filepath', label = "record", optional = True),
456
  gr.Audio(source="upload", type='filepath', label="filein", optional=True)]
semi_wavlm_large_tunisian_ctc/1234/env.log CHANGED
@@ -473,7 +473,7 @@ youtube-dl==2021.6.6
473
  zipp==3.6.0
474
  ==============================
475
  Git revision:
476
- 082323a
477
  ==============================
478
  CUDA version:
479
  11.7
 
473
  zipp==3.6.0
474
  ==============================
475
  Git revision:
476
+ 8ae3bec
477
  ==============================
478
  CUDA version:
479
  11.7
semi_wavlm_large_tunisian_ctc/1234/hyperparams.yaml CHANGED
@@ -1,5 +1,5 @@
1
  # Generated 2023-09-25 from:
2
- # /home/salah/Tunisian_Automatic_Speech_Recognition/train_semi.yaml
3
  # yamllint disable
4
  # ################################
5
  # Model: wav2vec2 + DNN + CTC
 
1
  # Generated 2023-09-25 from:
2
+ # /home/salah/Tunisian-Speech-Recognition/train_semi.yaml
3
  # yamllint disable
4
  # ################################
5
  # Model: wav2vec2 + DNN + CTC
semi_wavlm_large_tunisian_ctc/1234/log.txt CHANGED
@@ -2268,3 +2268,651 @@ botocore.exceptions.ConnectTimeoutError: Connect timeout on endpoint URL: "http:
2268
  2023-09-25 11:55:41,408 - matplotlib.pyplot - DEBUG - Loaded backend agg version unknown.
2269
  2023-09-25 11:55:41,456 - pydub.converter - DEBUG - subprocess.call(['ffmpeg', '-y', '-i', '/tmp/gradio/31eca7d10f9506b4380f815f4bc19a04caed0f0f/audio.wav', '-acodec', 'pcm_s32le', '-vn', '-f', 'wav', '-'])
2270
  2023-09-25 11:55:41,780 - matplotlib.pyplot - DEBUG - Loaded backend TkAgg version unknown.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2268
  2023-09-25 11:55:41,408 - matplotlib.pyplot - DEBUG - Loaded backend agg version unknown.
2269
  2023-09-25 11:55:41,456 - pydub.converter - DEBUG - subprocess.call(['ffmpeg', '-y', '-i', '/tmp/gradio/31eca7d10f9506b4380f815f4bc19a04caed0f0f/audio.wav', '-acodec', 'pcm_s32le', '-vn', '-f', 'wav', '-'])
2270
  2023-09-25 11:55:41,780 - matplotlib.pyplot - DEBUG - Loaded backend TkAgg version unknown.
2271
+ 2023-09-25 12:56:40,960 - speechbrain.core - INFO - Beginning experiment!
2272
+ 2023-09-25 12:56:40,960 - speechbrain.core - INFO - Experiment folder: semi_wavlm_large_tunisian_ctc/1234
2273
+ 2023-09-25 12:56:41,472 - speechbrain.utils.superpowers - DEBUG - abkhazia==1.0
2274
+ absl-py==0.11.0
2275
+ aiofiles==23.2.1
2276
+ aiohttp==3.8.0
2277
+ aiosignal==1.2.0
2278
+ alabaster==0.7.12
2279
+ alembic==1.7.4
2280
+ altair==4.2.0
2281
+ altgraph==0.17
2282
+ antlr4-python3-runtime==4.9.3
2283
+ anyio==3.6.2
2284
+ appdirs==1.4.4
2285
+ argcomplete==1.12.2
2286
+ argon2-cffi==20.1.0
2287
+ arrow==1.2.3
2288
+ asgiref==3.6.0
2289
+ asteroid-filterbanks==0.4.0
2290
+ astunparse==1.6.3
2291
+ async-generator==1.10
2292
+ async-timeout==4.0.0
2293
+ attrdict==2.0.1
2294
+ attrs==20.3.0
2295
+ audeer==1.16.0
2296
+ audformat==0.11.5
2297
+ audinterface==0.7.0
2298
+ audiofile==1.0.0
2299
+ audiomentations==0.25.0
2300
+ audioread==2.1.9
2301
+ audobject==0.4.14
2302
+ audresample==0.1.6
2303
+ -e git+https://github.com/facebookresearch/WavAugment.git@54afcdb00ccc852c2f030f239f8532c9562b550e#egg=augment
2304
+ autopage==0.4.0
2305
+ Babel==2.9.0
2306
+ backcall==0.2.0
2307
+ backports.cached-property==1.0.2
2308
+ beautifulsoup4==4.10.0
2309
+ black==19.10b0
2310
+ bleach==3.3.0
2311
+ blessed==1.20.0
2312
+ boto3==1.20.2
2313
+ botocore==1.23.2
2314
+ bpemb==0.3.4
2315
+ braceexpand==0.1.7
2316
+ cachetools==4.2.0
2317
+ certifi @ file:///croot/certifi_1671487769961/work/certifi
2318
+ cffi==1.14.3
2319
+ cfgv==3.2.0
2320
+ chardet==3.0.4
2321
+ charset-normalizer==2.0.7
2322
+ click==7.1.2
2323
+ cliff==3.9.0
2324
+ clldutils==3.5.4
2325
+ cloudpickle==2.2.1
2326
+ cmaes==0.8.2
2327
+ cmake==3.18.4.post1
2328
+ cmd2==2.2.0
2329
+ colorama==0.4.4
2330
+ colorlog==4.6.2
2331
+ configparser==5.1.0
2332
+ conllu==4.5.3
2333
+ croniter==1.3.15
2334
+ cryptography==38.0.4
2335
+ csrgraph==0.1.28
2336
+ csvw==1.8.1
2337
+ cycler==0.10.0
2338
+ Cython==0.29.21
2339
+ dataclasses==0.6
2340
+ dateutils==0.6.12
2341
+ decorator==4.4.2
2342
+ deepdiff==6.3.0
2343
+ deepspeech==0.9.1
2344
+ defusedxml==0.7.1
2345
+ Deprecated==1.2.14
2346
+ dill==0.3.3
2347
+ Distance==0.1.3
2348
+ distlib==0.3.1
2349
+ Django==3.2.16
2350
+ django-auditlog==2.2.1
2351
+ django-filter==22.1
2352
+ django-js-asset==1.2.2
2353
+ django-mptt==0.14.0
2354
+ djangorestframework==3.14.0
2355
+ docker-pycreds==0.4.0
2356
+ docopt==0.6.2
2357
+ docutils==0.16
2358
+ drf-excel==2.2.0
2359
+ drf-flex-fields==1.0.0
2360
+ drf-renderer-xlsx==0.4.1
2361
+ easyocr==1.2.1
2362
+ editdistance==0.6.0
2363
+ einops==0.3.2
2364
+ emoji==2.2.0
2365
+ entrypoints==0.3
2366
+ et-xmlfile==1.1.0
2367
+ exceptiongroup==1.1.0
2368
+ farasapy==0.0.14
2369
+ fastapi==0.98.0
2370
+ fastjsonschema==2.17.1
2371
+ fasttext==0.9.2
2372
+ ffmpeg-python==0.2.0
2373
+ ffmpy==0.3.0
2374
+ filelock==3.0.12
2375
+ flair==0.12.2
2376
+ flake8==3.7.9
2377
+ flatbuffers==1.12
2378
+ frozendict==2.0.7
2379
+ frozenlist==1.2.0
2380
+ fsspec==2021.11.0
2381
+ ftfy==6.1.1
2382
+ future==0.18.2
2383
+ g2p-en==2.1.0
2384
+ gast==0.3.3
2385
+ gdown==4.4.0
2386
+ gdrive==0.1.5
2387
+ gensim==4.0.1
2388
+ gitdb==4.0.9
2389
+ GitPython==3.1.24
2390
+ google-api-core==2.11.1
2391
+ google-api-python-client==2.43.0
2392
+ google-auth==1.24.0
2393
+ google-auth-httplib2==0.1.0
2394
+ google-auth-oauthlib==0.5.3
2395
+ google-pasta==0.2.0
2396
+ googleapis-common-protos==1.59.1
2397
+ gradio==3.44.4
2398
+ gradio-client==0.5.1
2399
+ greenlet==1.1.2
2400
+ grpcio==1.32.0
2401
+ h11==0.14.0
2402
+ h5features==1.3.2
2403
+ h5py==2.10.0
2404
+ hierarchy==0.4.0
2405
+ hmmlearn==0.2.8
2406
+ htk-io==0.5
2407
+ httpcore==0.16.3
2408
+ httplib2==0.22.0
2409
+ httpx==0.23.3
2410
+ huggingface-hub==0.15.1
2411
+ hydra-colorlog==0.1.4
2412
+ hydra-core==1.3.2
2413
+ hyperopt==0.2.7
2414
+ HyperPyYAML==1.1.0
2415
+ hypothesis==6.61.2
2416
+ identify==1.5.10
2417
+ idna==2.10
2418
+ imageio==2.9.0
2419
+ imagesize==1.2.0
2420
+ importlib-metadata==4.8.1
2421
+ importlib-resources==5.2.2
2422
+ inflect==5.3.0
2423
+ inquirer==3.1.3
2424
+ ipadic==1.0.0
2425
+ ipyevents==2.0.1
2426
+ ipykernel==5.3.4
2427
+ ipython==7.19.0
2428
+ ipython-genutils==0.2.0
2429
+ ipywebrtc==0.6.0
2430
+ ipywidgets==7.6.3
2431
+ iso-639==0.4.5
2432
+ isodate==0.6.0
2433
+ isort==4.3.21
2434
+ itsdangerous==2.1.2
2435
+ Janome==0.5.0
2436
+ jedi==0.17.2
2437
+ jeepney==0.8.0
2438
+ jieba==0.42.1
2439
+ Jinja2==3.0.3
2440
+ jiwer==2.2.0
2441
+ jmespath==0.10.0
2442
+ joblib==0.17.0
2443
+ jsonschema==3.2.0
2444
+ julius==0.2.7
2445
+ jupyter-client==6.1.7
2446
+ jupyter-core==4.7.0
2447
+ jupyterlab-pygments==0.1.2
2448
+ jupyterlab-widgets==1.0.0
2449
+ kaitaistruct==0.9
2450
+ kaldi-io==0.9.4
2451
+ kaldi-python-io==1.2.2
2452
+ kaldiio==2.17.2
2453
+ kenlm @ https://github.com/kpu/kenlm/archive/master.zip
2454
+ Keras-Preprocessing==1.1.2
2455
+ kiwisolver==1.3.1
2456
+ lang-trans==0.6.0
2457
+ langdetect==1.0.9
2458
+ latexcodec==2.0.1
2459
+ ldap3==2.9.1
2460
+ librosa==0.9.0
2461
+ lightning-cloud==0.5.37
2462
+ lightning-utilities==0.8.0
2463
+ linkify-it-py==1.0.3
2464
+ lit==16.0.6
2465
+ llvmlite==0.35.0
2466
+ lxml==4.9.0
2467
+ Mako==1.1.5
2468
+ Markdown==3.3.3
2469
+ markdown-it-py==3.0.0
2470
+ MarkupSafe==2.1.3
2471
+ marshmallow==3.14.0
2472
+ matplotlib==3.3.3
2473
+ mccabe==0.6.1
2474
+ mcd==0.4
2475
+ mdit-py-plugins==0.3.3
2476
+ mdurl==0.1.2
2477
+ mecab-python3==1.0.3
2478
+ megatron-lm==2.2.0
2479
+ metrics==0.3.3
2480
+ mido==1.2.10
2481
+ mistune==0.8.4
2482
+ more-itertools==8.6.0
2483
+ mpld3==0.3
2484
+ mpmath==1.2.1
2485
+ multidict==5.2.0
2486
+ multiprocess==0.70.11.1
2487
+ nbclient==0.5.3
2488
+ nbconvert==5.6.1
2489
+ nbformat==5.9.0
2490
+ NEMO==4.3.2
2491
+ nemo-toolkit==1.4.0
2492
+ nest-asyncio==1.5.1
2493
+ networkx==2.8.8
2494
+ nltk==3.2.4
2495
+ nodeenv==1.5.0
2496
+ normalize==2.0.2
2497
+ notebook==6.3.0
2498
+ numba==0.52.0
2499
+ numpy==1.19.4
2500
+ nvidia-cublas-cu11==11.10.3.66
2501
+ nvidia-cuda-cupti-cu11==11.7.101
2502
+ nvidia-cuda-nvrtc-cu11==11.7.99
2503
+ nvidia-cuda-runtime-cu11==11.7.99
2504
+ nvidia-cudnn-cu11==8.5.0.96
2505
+ nvidia-cufft-cu11==10.9.0.58
2506
+ nvidia-curand-cu11==10.2.10.91
2507
+ nvidia-cusolver-cu11==11.4.0.1
2508
+ nvidia-cusparse-cu11==11.7.4.91
2509
+ nvidia-nccl-cu11==2.14.3
2510
+ nvidia-nvtx-cu11==11.7.91
2511
+ oauthlib==3.1.0
2512
+ omegaconf==2.3.0
2513
+ onnx==1.10.2
2514
+ OpenCC==1.1.2
2515
+ opencv-python==4.4.0.46
2516
+ openpyxl==3.0.9
2517
+ opensmile==2.2.0
2518
+ opt-einsum==3.3.0
2519
+ optuna==2.10.0
2520
+ ordered-set==4.1.0
2521
+ orjson==3.8.4
2522
+ oyaml==1.0
2523
+ packaging==22.0
2524
+ pandas==1.2.5
2525
+ pandocfilters==1.4.3
2526
+ pangu==4.0.6.1
2527
+ parameterized==0.8.1
2528
+ parso==0.7.1
2529
+ pathlib2==2.3.7.post1
2530
+ pathspec==0.5.5
2531
+ pathtools==0.1.2
2532
+ pbr==5.6.0
2533
+ pefile==2019.4.18
2534
+ pescador==2.1.0
2535
+ pesq==0.0.3
2536
+ pexpect==4.8.0
2537
+ phonemizer==2.2.1
2538
+ pickleshare==0.7.5
2539
+ Pillow==9.3.0
2540
+ pip-api==0.0.23
2541
+ pipreqs==0.4.11
2542
+ pluggy==0.13.1
2543
+ pooch==1.3.0
2544
+ portalocker==2.3.2
2545
+ pptree==3.1
2546
+ pre-commit==2.9.0
2547
+ preprocessing==0.1.13
2548
+ pretty-midi==0.2.9
2549
+ prettytable==2.2.1
2550
+ primePy==1.3
2551
+ progressbar2==3.53.1
2552
+ prometheus-client==0.10.1
2553
+ promise==2.3
2554
+ prompt-toolkit==3.0.8
2555
+ protobuf==3.20.3
2556
+ psutil==5.6.6
2557
+ ptyprocess==0.6.0
2558
+ py==1.9.0
2559
+ py-espeak-ng==0.1.8
2560
+ py4j==0.10.9.7
2561
+ pyannote.audio==2.1.1
2562
+ pyannote.core==4.5
2563
+ pyannote.database==4.1.3
2564
+ pyannote.metrics==3.2.1
2565
+ pyannote.pipeline==2.3
2566
+ pyannotebook==0.1.0.dev0
2567
+ PyArabic==0.6.15
2568
+ pyarrow==3.0.0
2569
+ pyasn1==0.4.8
2570
+ pyasn1-modules==0.2.8
2571
+ pybind11==2.8.1
2572
+ pybtex==0.24.0
2573
+ pybtex-docutils==1.0.1
2574
+ pycodestyle==2.5.0
2575
+ pycparser==2.20
2576
+ pycryptodome==3.16.0
2577
+ pyctcdecode==0.4.0
2578
+ pydantic==1.10.4
2579
+ pyDeprecate==0.3.1
2580
+ pydub==0.25.1
2581
+ pyflakes==2.1.1
2582
+ Pygments==2.15.1
2583
+ pygtrie==2.5.0
2584
+ PyJWT==2.7.0
2585
+ pymodbus==2.5.3
2586
+ pyparsing==2.4.7
2587
+ pyperclip==1.8.2
2588
+ pypinyin==0.43.0
2589
+ pyrsistent==0.17.3
2590
+ pyserial==3.5
2591
+ PySocks==1.7.1
2592
+ pystoi==0.3.3
2593
+ pytest==5.4.1
2594
+ pytest-runner==5.3.1
2595
+ python-bidi==0.4.2
2596
+ python-crfsuite==0.9.7
2597
+ python-dateutil==2.8.2
2598
+ python-editor==1.0.4
2599
+ python-Levenshtein==0.12.2
2600
+ python-multipart==0.0.5
2601
+ python-utils==2.4.0
2602
+ pytorch-lightning==1.6.5
2603
+ pytorch-metric-learning==1.7.3
2604
+ pytorch-revgrad==0.2.0
2605
+ pytube==11.0.1
2606
+ pytz==2022.6
2607
+ PyWavelets==1.1.1
2608
+ PyYAML==6.0
2609
+ pyzmq==20.0.0
2610
+ rapidfuzz==1.8.2
2611
+ readchar==4.0.5
2612
+ regex==2020.11.13
2613
+ requests==2.28.1
2614
+ requests-oauthlib==1.3.0
2615
+ resampy==0.2.2
2616
+ rfc3986==1.4.0
2617
+ rich==13.4.2
2618
+ richenum==1.3.1
2619
+ rsa==4.7
2620
+ ruamel.yaml==0.17.21
2621
+ ruamel.yaml.clib==0.2.7
2622
+ s3m==1.1.0
2623
+ s3transfer==0.5.0
2624
+ sacrebleu==2.0.0
2625
+ sacremoses==0.0.44
2626
+ safetensors==0.3.1
2627
+ scikit-image==0.18.1
2628
+ scikit-learn==0.23.2
2629
+ scipy==1.5.4
2630
+ -e git+https://github.com/sanghack81/SDCIT@00d060dde733fde9345154a494f81e97fb395ca7#egg=SDCIT
2631
+ seaborn==0.11.1
2632
+ SecretStorage==3.3.3
2633
+ segments==2.1.3
2634
+ segtok==1.5.11
2635
+ semantic-version==2.10.0
2636
+ semver==2.13.0
2637
+ Send2Trash==1.5.0
2638
+ sentencepiece==0.1.99
2639
+ sentry-sdk==1.4.3
2640
+ shellingham==1.4.0
2641
+ shortuuid==1.0.7
2642
+ SIDEKIT==1.3.8.5.2
2643
+ simplejson==3.17.5
2644
+ singledispatchmethod==1.0
2645
+ six==1.15.0
2646
+ smart-open==5.0.0
2647
+ smmap==5.0.0
2648
+ sniffio==1.3.0
2649
+ snowballstemmer==2.0.0
2650
+ sortedcollections==2.1.0
2651
+ sortedcontainers==2.4.0
2652
+ sounddevice==0.4.5
2653
+ SoundFile==0.10.3.post1
2654
+ soupsieve==2.3
2655
+ sox==1.4.1
2656
+ sparsemax==0.1.9
2657
+ speechbrain==0.5.14
2658
+ sphfile==1.0.3
2659
+ Sphinx==3.3.1
2660
+ sphinx-rtd-theme==0.2.4
2661
+ sphinxcontrib-applehelp==1.0.2
2662
+ sphinxcontrib-bibtex==2.4.1
2663
+ sphinxcontrib-devhelp==1.0.2
2664
+ sphinxcontrib-htmlhelp==1.0.3
2665
+ sphinxcontrib-jsmath==1.0.1
2666
+ sphinxcontrib-qthelp==1.0.3
2667
+ sphinxcontrib-serializinghtml==1.1.4
2668
+ SQLAlchemy==1.4.25
2669
+ sqlitedict==2.1.0
2670
+ sqlparse==0.4.2
2671
+ stanza==1.4.2
2672
+ starlette==0.27.0
2673
+ starsessions==1.3.0
2674
+ stevedore==3.4.0
2675
+ subprocess32==3.5.4
2676
+ sympy==1.9
2677
+ tabulate==0.8.9
2678
+ tensorboard==2.4.0
2679
+ tensorboard-plugin-wit==1.7.0
2680
+ tensorboardX==2.6.1
2681
+ tensorflow==2.4.0
2682
+ tensorflow-estimator==2.4.0
2683
+ termcolor==1.1.0
2684
+ terminado==0.9.4
2685
+ testpath==0.4.4
2686
+ threadpoolctl==2.1.0
2687
+ tifffile==2020.12.8
2688
+ tikzplotlib==0.9.8
2689
+ tinycss2==1.2.1
2690
+ tkseem==0.0.3
2691
+ tokenizers==0.13.3
2692
+ toml==0.10.2
2693
+ toolz==0.12.0
2694
+ torch==1.13.1
2695
+ torch-audiomentations==0.11.0
2696
+ torch-pitch-shift==1.2.4
2697
+ torch-stft==0.1.4
2698
+ torchaudio==0.13.1
2699
+ torchmetrics==0.11.4
2700
+ torchvision==0.14.1
2701
+ tornado==6.1
2702
+ tqdm==4.61.1
2703
+ trackrip==1.2.1
2704
+ traitlets==5.9.0
2705
+ transformer-smaller-training-vocab==0.3.1
2706
+ transformers==4.30.2
2707
+ triton==2.0.0
2708
+ typed-ast==1.4.1
2709
+ typer==0.4.0
2710
+ typing-extensions==4.4.0
2711
+ uc-micro-py==1.0.1
2712
+ Unidecode==1.3.2
2713
+ uritemplate==3.0.1
2714
+ urllib3==1.26.2
2715
+ uvicorn==0.20.0
2716
+ versioneer==0.28
2717
+ virtualenv==20.2.1
2718
+ wandb==0.12.6
2719
+ wcwidth==0.2.5
2720
+ webdataset==0.1.62
2721
+ webencodings==0.5.1
2722
+ websocket-client==1.6.1
2723
+ websockets==10.4
2724
+ Werkzeug==1.0.1
2725
+ wget==3.2
2726
+ widgetsnbextension==3.5.1
2727
+ Wikipedia-API==0.6.0
2728
+ wordninja==2.0.0
2729
+ wrapt==1.12.1
2730
+ xmltodict==0.13.0
2731
+ xxhash==2.0.0
2732
+ yamllint==1.23.0
2733
+ yarg==0.1.9
2734
+ yarl==1.7.2
2735
+ yaspin==2.1.0
2736
+ youtokentome==1.0.6
2737
+ youtube-dl==2021.6.6
2738
+ zipp==3.6.0
2739
+
2740
+
2741
+ 2023-09-25 12:56:41,508 - speechbrain.utils.superpowers - DEBUG - 8ae3bec
2742
+
2743
+
2744
+ 2023-09-25 12:56:41,542 - speechbrain.dataio.encoder - DEBUG - Loaded categorical encoding from semi_wavlm_large_tunisian_ctc/1234/save/label_encoder.txt
2745
+ 2023-09-25 12:56:41,542 - speechbrain.dataio.encoder - INFO - Load called, but CTCTextEncoder is not empty. Loaded data will overwrite everything. This is normal if there is e.g. an unk label defined at init.
2746
+ 2023-09-25 12:56:41,543 - speechbrain.dataio.encoder - DEBUG - Loaded categorical encoding from semi_wavlm_large_tunisian_ctc/1234/save/label_encoder.txt
2747
+ 2023-09-25 12:56:44,009 - pyctcdecode.decoder - INFO - Using arpa instead of binary LM file, decoder instantiation might be slow.
2748
+ 2023-09-25 12:56:44,118 - pyctcdecode.alphabet - INFO - Alphabet determined to be of regular style.
2749
+ 2023-09-25 12:56:44,181 - pyctcdecode.alphabet - WARNING - Unigrams and labels don't seem to agree.
2750
+ 2023-09-25 12:56:45,521 - speechbrain.core - INFO - Info: auto_mix_prec arg from hparam file is used
2751
+ 2023-09-25 12:56:45,521 - speechbrain.core - INFO - Info: ckpt_interval_minutes arg from hparam file is used
2752
+ 2023-09-25 12:56:45,525 - speechbrain.core - INFO - 314.4M trainable parameters in ASR
2753
+ 2023-09-25 12:56:45,533 - speechbrain.utils.checkpoints - INFO - Loading a checkpoint from semi_wavlm_large_tunisian_ctc/1234/save/CKPT+2023-09-05+01-09-23+00
2754
+ 2023-09-25 12:56:46,635 - urllib3.connectionpool - DEBUG - Starting new HTTPS connection (1): checkip.amazonaws.com:443
2755
+ 2023-09-25 12:56:46,635 - urllib3.connectionpool - DEBUG - Starting new HTTPS connection (1): api.gradio.app:443
2756
+ 2023-09-25 12:56:46,637 - asyncio - DEBUG - Using selector: EpollSelector
2757
+ 2023-09-25 12:56:46,665 - asyncio - DEBUG - Using selector: EpollSelector
2758
+ 2023-09-25 12:56:46,673 - urllib3.connectionpool - DEBUG - Starting new HTTP connection (1): 127.0.0.1:7860
2759
+ 2023-09-25 12:56:46,675 - urllib3.connectionpool - DEBUG - http://127.0.0.1:7860 "GET /startup-events HTTP/1.1" 200 5
2760
+ 2023-09-25 12:56:46,702 - botocore.hooks - DEBUG - Changing event name from creating-client-class.iot-data to creating-client-class.iot-data-plane
2761
+ 2023-09-25 12:56:46,703 - botocore.hooks - DEBUG - Changing event name from before-call.apigateway to before-call.api-gateway
2762
+ 2023-09-25 12:56:46,703 - botocore.hooks - DEBUG - Changing event name from request-created.machinelearning.Predict to request-created.machine-learning.Predict
2763
+ 2023-09-25 12:56:46,704 - botocore.hooks - DEBUG - Changing event name from before-parameter-build.autoscaling.CreateLaunchConfiguration to before-parameter-build.auto-scaling.CreateLaunchConfiguration
2764
+ 2023-09-25 12:56:46,704 - botocore.hooks - DEBUG - Changing event name from before-parameter-build.route53 to before-parameter-build.route-53
2765
+ 2023-09-25 12:56:46,704 - botocore.hooks - DEBUG - Changing event name from request-created.cloudsearchdomain.Search to request-created.cloudsearch-domain.Search
2766
+ 2023-09-25 12:56:46,705 - botocore.hooks - DEBUG - Changing event name from docs.*.autoscaling.CreateLaunchConfiguration.complete-section to docs.*.auto-scaling.CreateLaunchConfiguration.complete-section
2767
+ 2023-09-25 12:56:46,706 - botocore.hooks - DEBUG - Changing event name from before-parameter-build.logs.CreateExportTask to before-parameter-build.cloudwatch-logs.CreateExportTask
2768
+ 2023-09-25 12:56:46,706 - botocore.hooks - DEBUG - Changing event name from docs.*.logs.CreateExportTask.complete-section to docs.*.cloudwatch-logs.CreateExportTask.complete-section
2769
+ 2023-09-25 12:56:46,706 - botocore.hooks - DEBUG - Changing event name from before-parameter-build.cloudsearchdomain.Search to before-parameter-build.cloudsearch-domain.Search
2770
+ 2023-09-25 12:56:46,706 - botocore.hooks - DEBUG - Changing event name from docs.*.cloudsearchdomain.Search.complete-section to docs.*.cloudsearch-domain.Search.complete-section
2771
+ 2023-09-25 12:56:46,707 - botocore.utils - DEBUG - IMDS ENDPOINT: http://169.254.169.254/
2772
+ 2023-09-25 12:56:46,708 - botocore.credentials - DEBUG - Looking for credentials via: env
2773
+ 2023-09-25 12:56:46,708 - botocore.credentials - DEBUG - Looking for credentials via: assume-role
2774
+ 2023-09-25 12:56:46,708 - botocore.credentials - DEBUG - Looking for credentials via: assume-role-with-web-identity
2775
+ 2023-09-25 12:56:46,708 - botocore.credentials - DEBUG - Looking for credentials via: sso
2776
+ 2023-09-25 12:56:46,708 - botocore.credentials - DEBUG - Looking for credentials via: shared-credentials-file
2777
+ 2023-09-25 12:56:46,708 - botocore.credentials - DEBUG - Looking for credentials via: custom-process
2778
+ 2023-09-25 12:56:46,708 - botocore.credentials - DEBUG - Looking for credentials via: config-file
2779
+ 2023-09-25 12:56:46,708 - botocore.credentials - DEBUG - Looking for credentials via: ec2-credentials-file
2780
+ 2023-09-25 12:56:46,708 - botocore.credentials - DEBUG - Looking for credentials via: boto-config
2781
+ 2023-09-25 12:56:46,708 - botocore.credentials - DEBUG - Looking for credentials via: container-role
2782
+ 2023-09-25 12:56:46,708 - botocore.credentials - DEBUG - Looking for credentials via: iam-role
2783
+ 2023-09-25 12:56:46,709 - urllib3.connectionpool - DEBUG - Starting new HTTP connection (1): 169.254.169.254:80
2784
+ 2023-09-25 12:56:46,775 - urllib3.connectionpool - DEBUG - https://checkip.amazonaws.com:443 "GET / HTTP/1.1" 200 14
2785
+ 2023-09-25 12:56:46,778 - urllib3.connectionpool - DEBUG - Starting new HTTPS connection (1): api.gradio.app:443
2786
+ 2023-09-25 12:56:47,356 - urllib3.connectionpool - DEBUG - https://api.gradio.app:443 "GET /pkg-version HTTP/1.1" 200 21
2787
+ 2023-09-25 12:56:47,648 - urllib3.connectionpool - DEBUG - https://api.gradio.app:443 "POST /gradio-initiated-analytics/ HTTP/1.1" 200 None
2788
+ 2023-09-25 12:56:47,710 - botocore.utils - DEBUG - Caught retryable HTTP exception while making metadata service request to http://169.254.169.254/latest/api/token: Connect timeout on endpoint URL: "http://169.254.169.254/latest/api/token"
2789
+ Traceback (most recent call last):
2790
+ File "/home/salah/anaconda3/envs/salah/lib/python3.8/site-packages/urllib3/connection.py", line 169, in _new_conn
2791
+ conn = connection.create_connection(
2792
+ File "/home/salah/anaconda3/envs/salah/lib/python3.8/site-packages/urllib3/util/connection.py", line 96, in create_connection
2793
+ raise err
2794
+ File "/home/salah/anaconda3/envs/salah/lib/python3.8/site-packages/urllib3/util/connection.py", line 86, in create_connection
2795
+ sock.connect(sa)
2796
+ socket.timeout: timed out
2797
+
2798
+ During handling of the above exception, another exception occurred:
2799
+
2800
+ Traceback (most recent call last):
2801
+ File "/home/salah/anaconda3/envs/salah/lib/python3.8/site-packages/botocore/httpsession.py", line 385, in send
2802
+ urllib_response = conn.urlopen(
2803
+ File "/home/salah/anaconda3/envs/salah/lib/python3.8/site-packages/urllib3/connectionpool.py", line 755, in urlopen
2804
+ retries = retries.increment(
2805
+ File "/home/salah/anaconda3/envs/salah/lib/python3.8/site-packages/urllib3/util/retry.py", line 506, in increment
2806
+ raise six.reraise(type(error), error, _stacktrace)
2807
+ File "/home/salah/anaconda3/envs/salah/lib/python3.8/site-packages/urllib3/packages/six.py", line 735, in reraise
2808
+ raise value
2809
+ File "/home/salah/anaconda3/envs/salah/lib/python3.8/site-packages/urllib3/connectionpool.py", line 699, in urlopen
2810
+ httplib_response = self._make_request(
2811
+ File "/home/salah/anaconda3/envs/salah/lib/python3.8/site-packages/urllib3/connectionpool.py", line 394, in _make_request
2812
+ conn.request(method, url, **httplib_request_kw)
2813
+ File "/home/salah/anaconda3/envs/salah/lib/python3.8/site-packages/urllib3/connection.py", line 234, in request
2814
+ super(HTTPConnection, self).request(method, url, body=body, headers=headers)
2815
+ File "/home/salah/anaconda3/envs/salah/lib/python3.8/http/client.py", line 1255, in request
2816
+ self._send_request(method, url, body, headers, encode_chunked)
2817
+ File "/home/salah/anaconda3/envs/salah/lib/python3.8/site-packages/botocore/awsrequest.py", line 92, in _send_request
2818
+ rval = super(AWSConnection, self)._send_request(
2819
+ File "/home/salah/anaconda3/envs/salah/lib/python3.8/http/client.py", line 1301, in _send_request
2820
+ self.endheaders(body, encode_chunked=encode_chunked)
2821
+ File "/home/salah/anaconda3/envs/salah/lib/python3.8/http/client.py", line 1250, in endheaders
2822
+ self._send_output(message_body, encode_chunked=encode_chunked)
2823
+ File "/home/salah/anaconda3/envs/salah/lib/python3.8/site-packages/botocore/awsrequest.py", line 120, in _send_output
2824
+ self.send(msg)
2825
+ File "/home/salah/anaconda3/envs/salah/lib/python3.8/site-packages/botocore/awsrequest.py", line 204, in send
2826
+ return super(AWSConnection, self).send(str)
2827
+ File "/home/salah/anaconda3/envs/salah/lib/python3.8/http/client.py", line 950, in send
2828
+ self.connect()
2829
+ File "/home/salah/anaconda3/envs/salah/lib/python3.8/site-packages/urllib3/connection.py", line 200, in connect
2830
+ conn = self._new_conn()
2831
+ File "/home/salah/anaconda3/envs/salah/lib/python3.8/site-packages/urllib3/connection.py", line 174, in _new_conn
2832
+ raise ConnectTimeoutError(
2833
+ urllib3.exceptions.ConnectTimeoutError: (<botocore.awsrequest.AWSHTTPConnection object at 0x7f016bd17910>, 'Connection to 169.254.169.254 timed out. (connect timeout=1)')
2834
+
2835
+ During handling of the above exception, another exception occurred:
2836
+
2837
+ Traceback (most recent call last):
2838
+ File "/home/salah/anaconda3/envs/salah/lib/python3.8/site-packages/botocore/utils.py", line 430, in _fetch_metadata_token
2839
+ response = self._session.send(request.prepare())
2840
+ File "/home/salah/anaconda3/envs/salah/lib/python3.8/site-packages/botocore/httpsession.py", line 418, in send
2841
+ raise ConnectTimeoutError(endpoint_url=request.url, error=e)
2842
+ botocore.exceptions.ConnectTimeoutError: Connect timeout on endpoint URL: "http://169.254.169.254/latest/api/token"
2843
+ 2023-09-25 12:56:47,711 - urllib3.connectionpool - DEBUG - Starting new HTTP connection (2): 169.254.169.254:80
2844
+ 2023-09-25 12:56:48,713 - botocore.utils - DEBUG - Caught retryable HTTP exception while making metadata service request to http://169.254.169.254/latest/meta-data/iam/security-credentials/: Connect timeout on endpoint URL: "http://169.254.169.254/latest/meta-data/iam/security-credentials/"
2845
+ Traceback (most recent call last):
2846
+ File "/home/salah/anaconda3/envs/salah/lib/python3.8/site-packages/urllib3/connection.py", line 169, in _new_conn
2847
+ conn = connection.create_connection(
2848
+ File "/home/salah/anaconda3/envs/salah/lib/python3.8/site-packages/urllib3/util/connection.py", line 96, in create_connection
2849
+ raise err
2850
+ File "/home/salah/anaconda3/envs/salah/lib/python3.8/site-packages/urllib3/util/connection.py", line 86, in create_connection
2851
+ sock.connect(sa)
2852
+ socket.timeout: timed out
2853
+
2854
+ During handling of the above exception, another exception occurred:
2855
+
2856
+ Traceback (most recent call last):
2857
+ File "/home/salah/anaconda3/envs/salah/lib/python3.8/site-packages/botocore/httpsession.py", line 385, in send
2858
+ urllib_response = conn.urlopen(
2859
+ File "/home/salah/anaconda3/envs/salah/lib/python3.8/site-packages/urllib3/connectionpool.py", line 755, in urlopen
2860
+ retries = retries.increment(
2861
+ File "/home/salah/anaconda3/envs/salah/lib/python3.8/site-packages/urllib3/util/retry.py", line 506, in increment
2862
+ raise six.reraise(type(error), error, _stacktrace)
2863
+ File "/home/salah/anaconda3/envs/salah/lib/python3.8/site-packages/urllib3/packages/six.py", line 735, in reraise
2864
+ raise value
2865
+ File "/home/salah/anaconda3/envs/salah/lib/python3.8/site-packages/urllib3/connectionpool.py", line 699, in urlopen
2866
+ httplib_response = self._make_request(
2867
+ File "/home/salah/anaconda3/envs/salah/lib/python3.8/site-packages/urllib3/connectionpool.py", line 394, in _make_request
2868
+ conn.request(method, url, **httplib_request_kw)
2869
+ File "/home/salah/anaconda3/envs/salah/lib/python3.8/site-packages/urllib3/connection.py", line 234, in request
2870
+ super(HTTPConnection, self).request(method, url, body=body, headers=headers)
2871
+ File "/home/salah/anaconda3/envs/salah/lib/python3.8/http/client.py", line 1255, in request
2872
+ self._send_request(method, url, body, headers, encode_chunked)
2873
+ File "/home/salah/anaconda3/envs/salah/lib/python3.8/site-packages/botocore/awsrequest.py", line 92, in _send_request
2874
+ rval = super(AWSConnection, self)._send_request(
2875
+ File "/home/salah/anaconda3/envs/salah/lib/python3.8/http/client.py", line 1301, in _send_request
2876
+ self.endheaders(body, encode_chunked=encode_chunked)
2877
+ File "/home/salah/anaconda3/envs/salah/lib/python3.8/http/client.py", line 1250, in endheaders
2878
+ self._send_output(message_body, encode_chunked=encode_chunked)
2879
+ File "/home/salah/anaconda3/envs/salah/lib/python3.8/site-packages/botocore/awsrequest.py", line 120, in _send_output
2880
+ self.send(msg)
2881
+ File "/home/salah/anaconda3/envs/salah/lib/python3.8/site-packages/botocore/awsrequest.py", line 204, in send
2882
+ return super(AWSConnection, self).send(str)
2883
+ File "/home/salah/anaconda3/envs/salah/lib/python3.8/http/client.py", line 950, in send
2884
+ self.connect()
2885
+ File "/home/salah/anaconda3/envs/salah/lib/python3.8/site-packages/urllib3/connection.py", line 200, in connect
2886
+ conn = self._new_conn()
2887
+ File "/home/salah/anaconda3/envs/salah/lib/python3.8/site-packages/urllib3/connection.py", line 174, in _new_conn
2888
+ raise ConnectTimeoutError(
2889
+ urllib3.exceptions.ConnectTimeoutError: (<botocore.awsrequest.AWSHTTPConnection object at 0x7f016c144a30>, 'Connection to 169.254.169.254 timed out. (connect timeout=1)')
2890
+
2891
+ During handling of the above exception, another exception occurred:
2892
+
2893
+ Traceback (most recent call last):
2894
+ File "/home/salah/anaconda3/envs/salah/lib/python3.8/site-packages/botocore/utils.py", line 478, in _get_request
2895
+ response = self._session.send(request.prepare())
2896
+ File "/home/salah/anaconda3/envs/salah/lib/python3.8/site-packages/botocore/httpsession.py", line 418, in send
2897
+ raise ConnectTimeoutError(endpoint_url=request.url, error=e)
2898
+ botocore.exceptions.ConnectTimeoutError: Connect timeout on endpoint URL: "http://169.254.169.254/latest/meta-data/iam/security-credentials/"
2899
+ 2023-09-25 12:56:48,714 - botocore.utils - DEBUG - Max number of attempts exceeded (1) when attempting to retrieve data from metadata service.
2900
+ 2023-09-25 12:56:48,715 - botocore.loaders - DEBUG - Loading JSON file: /home/salah/anaconda3/envs/salah/lib/python3.8/site-packages/botocore/data/endpoints.json
2901
+ 2023-09-25 12:56:48,745 - botocore.hooks - DEBUG - Event choose-service-name: calling handler <function handle_service_name_alias at 0x7f016bef2b80>
2902
+ 2023-09-25 12:56:48,754 - botocore.loaders - DEBUG - Loading JSON file: /home/salah/anaconda3/envs/salah/lib/python3.8/site-packages/botocore/data/sts/2011-06-15/service-2.json
2903
+ 2023-09-25 12:56:48,756 - botocore.hooks - DEBUG - Event creating-client-class.sts: calling handler <function add_generate_presigned_url at 0x7f016be09550>
2904
+ 2023-09-25 12:56:48,758 - botocore.endpoint - DEBUG - Setting sts timeout as (60, 60)
2905
+ 2023-09-25 12:56:48,759 - botocore.loaders - DEBUG - Loading JSON file: /home/salah/anaconda3/envs/salah/lib/python3.8/site-packages/botocore/data/_retry.json
2906
+ 2023-09-25 12:56:48,759 - botocore.client - DEBUG - Registering retry handlers for service: sts
2907
+ 2023-09-25 12:56:48,760 - botocore.hooks - DEBUG - Event before-parameter-build.sts.GetCallerIdentity: calling handler <function generate_idempotent_uuid at 0x7f016bdf6ee0>
2908
+ 2023-09-25 12:56:48,760 - botocore.hooks - DEBUG - Event before-call.sts.GetCallerIdentity: calling handler <function inject_api_version_header_if_needed at 0x7f016be01790>
2909
+ 2023-09-25 12:56:48,760 - botocore.endpoint - DEBUG - Making request for OperationModel(name=GetCallerIdentity) with params: {'url_path': '/', 'query_string': '', 'method': 'POST', 'headers': {'Content-Type': 'application/x-www-form-urlencoded; charset=utf-8', 'User-Agent': 'Boto3/1.20.2 Python/3.8.5 Linux/5.4.0-150-generic Botocore/1.23.2'}, 'body': {'Action': 'GetCallerIdentity', 'Version': '2011-06-15'}, 'url': 'https://sts.amazonaws.com/', 'context': {'client_region': 'aws-global', 'client_config': <botocore.config.Config object at 0x7f016c144610>, 'has_streaming_input': False, 'auth_type': None}}
2910
+ 2023-09-25 12:56:48,760 - botocore.hooks - DEBUG - Event request-created.sts.GetCallerIdentity: calling handler <bound method RequestSigner.handler of <botocore.signers.RequestSigner object at 0x7f016c144d00>>
2911
+ 2023-09-25 12:56:48,761 - botocore.hooks - DEBUG - Event choose-signer.sts.GetCallerIdentity: calling handler <function set_operation_specific_signer at 0x7f016bdf6dc0>
2912
+ 2023-09-25 12:56:48,762 - urllib3.connectionpool - DEBUG - Starting new HTTP connection (1): 127.0.0.1:7860
2913
+ 2023-09-25 12:56:48,773 - urllib3.connectionpool - DEBUG - http://127.0.0.1:7860 "HEAD / HTTP/1.1" 200 0
2914
+ 2023-09-25 12:56:48,774 - urllib3.connectionpool - DEBUG - Starting new HTTPS connection (1): api.gradio.app:443
2915
+ 2023-09-25 12:56:49,687 - urllib3.connectionpool - DEBUG - https://api.gradio.app:443 "POST /gradio-launched-telemetry/ HTTP/1.1" 200 None
2916
+ 2023-09-25 12:57:02,198 - matplotlib.pyplot - DEBUG - Loaded backend agg version unknown.
2917
+ 2023-09-25 12:57:02,271 - pydub.converter - DEBUG - subprocess.call(['ffmpeg', '-y', '-i', '/tmp/gradio/8b87809fc288611c10997e7489b7ad1574e4255d/audio.wav', '-acodec', 'pcm_s32le', '-vn', '-f', 'wav', '-'])
2918
+ 2023-09-25 12:57:02,695 - matplotlib.pyplot - DEBUG - Loaded backend TkAgg version unknown.