Spaces:
Running
Running
Yurii Paniv
commited on
Commit
•
7b5a889
1
Parent(s):
e88bc0e
Fix stanza failures
Browse files- requirements.txt +1 -0
- setup.py +1 -0
requirements.txt
CHANGED
@@ -4,6 +4,7 @@ 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.0.2
|
|
|
7 |
git+https://github.com/egorsmkv/ukrainian-accentor.git@5b7971c4e135e3ff3283336962e63fc0b1c80f4c
|
8 |
gradio # 3.34
|
9 |
huggingface_hub # ==0.11.1
|
|
|
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.0.2
|
7 |
+
stanza<1.6 # 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
|
setup.py
CHANGED
@@ -17,5 +17,6 @@ setup(
|
|
17 |
"num2words @ git+https://github.com/savoirfairelinux/num2words.git@3e39091d052829fc9e65c18176ce7b7ff6169772",
|
18 |
"ukrainian-word-stress==1.0.2",
|
19 |
"ukrainian_accentor @ git+https://github.com/egorsmkv/ukrainian-accentor.git@5b7971c4e135e3ff3283336962e63fc0b1c80f4c",
|
|
|
20 |
],
|
21 |
)
|
|
|
17 |
"num2words @ git+https://github.com/savoirfairelinux/num2words.git@3e39091d052829fc9e65c18176ce7b7ff6169772",
|
18 |
"ukrainian-word-stress==1.0.2",
|
19 |
"ukrainian_accentor @ git+https://github.com/egorsmkv/ukrainian-accentor.git@5b7971c4e135e3ff3283336962e63fc0b1c80f4c",
|
20 |
+
"stanza<1.6", # fix for ukrainian-word-stress
|
21 |
],
|
22 |
)
|