Yurii Paniv commited on
Commit
dece955
·
1 Parent(s): bef4620

Update to latest gradio

Browse files
Files changed (4) hide show
  1. README.md +1 -1
  2. app.py +1 -1
  3. requirements.txt +2 -2
  4. ukrainian_tts/__init__.py +2 -1
README.md CHANGED
@@ -4,7 +4,7 @@ emoji: 🐌
4
  colorFrom: blue
5
  colorTo: yellow
6
  sdk: gradio
7
- sdk_version : 3.40.1
8
  python_version: 3.10.3
9
  app_file: app.py
10
  pinned: false
 
4
  colorFrom: blue
5
  colorTo: yellow
6
  sdk: gradio
7
+ sdk_version : 5.7.1
8
  python_version: 3.10.3
9
  app_file: app.py
10
  pinned: false
app.py CHANGED
@@ -129,5 +129,5 @@ iface = gr.Interface(
129
  ],
130
  ],
131
  )
132
- iface.queue(concurrency_count=1) # for HF specifically
133
  iface.launch()
 
129
  ],
130
  ],
131
  )
132
+ iface.queue() # for HF specifically
133
  iface.launch()
requirements.txt CHANGED
@@ -4,8 +4,8 @@ espnet==202301
4
  typeguard<3 # typeguard 3.0.0 is incompatible with espnet
5
  git+https://github.com/savoirfairelinux/num2words.git@3e39091d052829fc9e65c18176ce7b7ff6169772
6
  ukrainian-word-stress==1.1.0
7
- stanza==1.7 # fix for ukrainian-word-stress
8
  git+https://github.com/egorsmkv/ukrainian-accentor.git@5b7971c4e135e3ff3283336962e63fc0b1c80f4c
9
- gradio # 3.34
10
  huggingface_hub # ==0.11.1
11
  scipy<1.12.0 # fix for espnet, need to update espnet version
 
4
  typeguard<3 # typeguard 3.0.0 is incompatible with espnet
5
  git+https://github.com/savoirfairelinux/num2words.git@3e39091d052829fc9e65c18176ce7b7ff6169772
6
  ukrainian-word-stress==1.1.0
7
+ stanza # ==1.7 # fix for ukrainian-word-stress
8
  git+https://github.com/egorsmkv/ukrainian-accentor.git@5b7971c4e135e3ff3283336962e63fc0b1c80f4c
9
+ gradio # 5.7.1
10
  huggingface_hub # ==0.11.1
11
  scipy<1.12.0 # fix for espnet, need to update espnet version
ukrainian_tts/__init__.py CHANGED
@@ -1 +1,2 @@
1
-
 
 
1
+ import stanza
2
+ stanza.download("uk")