Spaces:
Running
Running
Yurii Paniv
commited on
Commit
•
2814fc6
1
Parent(s):
ced6f3d
#2 Full rename
Browse files- .github/workflows/tests.yml +1 -1
- README.md +5 -5
- app.py +1 -1
- crh_tts/tts.py +3 -3
.github/workflows/tests.yml
CHANGED
@@ -55,4 +55,4 @@ jobs:
|
|
55 |
- name: Push to hub
|
56 |
env:
|
57 |
HF_TOKEN: ${{ secrets.HF_TOKEN }}
|
58 |
-
run: git push https://HF_USERNAME:[email protected]/spaces/robinhad/
|
|
|
55 |
- name: Push to hub
|
56 |
env:
|
57 |
HF_TOKEN: ${{ secrets.HF_TOKEN }}
|
58 |
+
run: git push https://HF_USERNAME:[email protected]/spaces/robinhad/qirimtatar-tts main
|
README.md
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
emoji: 🦀
|
4 |
colorFrom: gray
|
5 |
colorTo: red
|
@@ -9,13 +9,13 @@ app_file: app.py
|
|
9 |
pinned: false
|
10 |
---
|
11 |
|
12 |
-
# Crimean Tatar (
|
13 |
Text-to-Speech for Crimean Tatar language
|
14 |
|
15 |
-
![pytest](https://github.com/robinhad/
|
16 |
|
17 |
-
Source code: https://github.com/robinhad/
|
18 |
-
Online demo: https://huggingface.co/spaces/robinhad/
|
19 |
You're welcome to join UA Speech Recognition and Synthesis community: Telegram https://t.me/speech_recognition_uk
|
20 |
|
21 |
## Examples
|
|
|
1 |
---
|
2 |
+
title: Qirimtatar Tts
|
3 |
emoji: 🦀
|
4 |
colorFrom: gray
|
5 |
colorTo: red
|
|
|
9 |
pinned: false
|
10 |
---
|
11 |
|
12 |
+
# Crimean Tatar (Qirimtatar) TTS
|
13 |
Text-to-Speech for Crimean Tatar language
|
14 |
|
15 |
+
![pytest](https://github.com/robinhad/qirimtatar-tts/actions/workflows/tests.yml/badge.svg) [![Open In HF🤗 Space ](https://img.shields.io/badge/Open%20Demo-%F0%9F%A4%97%20Space-yellow)](https://huggingface.co/spaces/robinhad/qirimtatar-tts)
|
16 |
|
17 |
+
Source code: https://github.com/robinhad/qirimtatar-tts
|
18 |
+
Online demo: https://huggingface.co/spaces/robinhad/qirimtatar-tts
|
19 |
You're welcome to join UA Speech Recognition and Synthesis community: Telegram https://t.me/speech_recognition_uk
|
20 |
|
21 |
## Examples
|
app.py
CHANGED
@@ -21,7 +21,7 @@ print(f"CUDA available? {is_available()}")
|
|
21 |
|
22 |
|
23 |
badge = (
|
24 |
-
"https://visitor-badge-reloaded.herokuapp.com/badge?page_id=robinhad.
|
25 |
)
|
26 |
|
27 |
crh_tts = TTS(use_cuda=is_available())
|
|
|
21 |
|
22 |
|
23 |
badge = (
|
24 |
+
"https://visitor-badge-reloaded.herokuapp.com/badge?page_id=robinhad.qirimtatar-tts"
|
25 |
)
|
26 |
|
27 |
crh_tts = TTS(use_cuda=is_available())
|
crh_tts/tts.py
CHANGED
@@ -52,9 +52,9 @@ class TTS:
|
|
52 |
"""Downloads models and stores them into `cache_folder`. By default stores in current directory."""
|
53 |
print("downloading uk/crh/vits-tts")
|
54 |
release_number = "v0.0.1"
|
55 |
-
model_link = f"https://github.com/robinhad/
|
56 |
-
config_link = f"https://github.com/robinhad/
|
57 |
-
speakers_link = f"https://github.com/robinhad/
|
58 |
|
59 |
cache_folder = "."
|
60 |
|
|
|
52 |
"""Downloads models and stores them into `cache_folder`. By default stores in current directory."""
|
53 |
print("downloading uk/crh/vits-tts")
|
54 |
release_number = "v0.0.1"
|
55 |
+
model_link = f"https://github.com/robinhad/qirimtatar-tts/releases/download/{release_number}/model.pth"
|
56 |
+
config_link = f"https://github.com/robinhad/qirimtatar-tts/releases/download/{release_number}/config.json"
|
57 |
+
speakers_link = f"https://github.com/robinhad/qirimtatar-tts/releases/download/{release_number}/speakers.pth"
|
58 |
|
59 |
cache_folder = "."
|
60 |
|