Spaces:
Running
Running
exceptions, logging, refactoring, thumbnail, markdown
Browse files
app.py
CHANGED
@@ -1,6 +1,23 @@
|
|
|
|
|
|
1 |
import gradio
|
2 |
import sign_language_translator as slt
|
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
model = slt.models.ConcatenativeSynthesis("ur", "pk-sl", "video")
|
5 |
|
6 |
|
@@ -20,13 +37,13 @@ def text_to_video(
|
|
20 |
# ToDo: video.watermark("Sign Language Translator\nAI Generated Video")
|
21 |
|
22 |
|
23 |
-
def predict(text: str,
|
24 |
try:
|
25 |
path = "output.mp4"
|
26 |
-
text_to_video(text,
|
27 |
return path
|
28 |
except Exception as exc:
|
29 |
-
|
30 |
|
31 |
|
32 |
gradio_app = gradio.Interface(
|
@@ -56,16 +73,17 @@ gradio_app = gradio.Interface(
|
|
56 |
include_audio=False,
|
57 |
),
|
58 |
title="Concatenative Synthesis: Rule Based Text to Sign Language Translator",
|
59 |
-
description=
|
60 |
-
"The text is preprocessed, tokenized and rearranged and then each token is mapped to a prerecorded video which are concatenated and returned.\n\n"
|
61 |
-
"> NOTE: This model only supports a fixed vocabulary. Check the `*-dictionary-mapping.json` on https://github.com/sign-language-translator/sign-language-datasets/tree/main/parallel_texts",
|
62 |
examples=[
|
63 |
["یہ بہت اچھا ہے۔", "ur", "pakistan-sign-language"],
|
64 |
["یہ کام بہت آسان ہے۔", "ur", "pakistan-sign-language"],
|
65 |
["पाँच घंटे।", "hi", "pakistan-sign-language"],
|
66 |
-
# ["आप कैसे
|
67 |
],
|
68 |
allow_flagging="auto",
|
|
|
|
|
|
|
69 |
)
|
70 |
|
71 |
if __name__ == "__main__":
|
|
|
1 |
+
import os
|
2 |
+
|
3 |
import gradio
|
4 |
import sign_language_translator as slt
|
5 |
|
6 |
+
description = """Enter your text and select languages from the dropdowns, then click Submit to generate a video. [`Repository`](https://github.com/sign-language-translator/sign-language-translator)
|
7 |
+
|
8 |
+
The text is preprocessed, tokenized and rearranged and then each token is mapped to a prerecorded video which are concatenated and returned. [`model code`](https://github.com/sign-language-translator/sign-language-translator/blob/main/sign_language_translator/models/text_to_sign/concatenative_synthesis.py)
|
9 |
+
|
10 |
+
> NOTE: This model only supports a fixed vocabulary. See the [`*-dictionary-mapping.json`](https://github.com/sign-language-translator/sign-language-datasets/tree/main/parallel_texts) files for supported words."""
|
11 |
+
|
12 |
+
HF_TOKEN = os.getenv("HF_TOKEN")
|
13 |
+
hf_writer = (
|
14 |
+
gradio.HuggingFaceDatasetSaver(
|
15 |
+
HF_TOKEN, "crowdsourced-text-to-sign-language-rule-based-translation-corpus"
|
16 |
+
)
|
17 |
+
if HF_TOKEN
|
18 |
+
else None
|
19 |
+
)
|
20 |
+
|
21 |
model = slt.models.ConcatenativeSynthesis("ur", "pk-sl", "video")
|
22 |
|
23 |
|
|
|
37 |
# ToDo: video.watermark("Sign Language Translator\nAI Generated Video")
|
38 |
|
39 |
|
40 |
+
def predict(text: str, text_lang: str, sign_lang: str):
|
41 |
try:
|
42 |
path = "output.mp4"
|
43 |
+
text_to_video(text, text_lang, sign_lang, output_path=path, codec="mp4v")
|
44 |
return path
|
45 |
except Exception as exc:
|
46 |
+
raise gradio.Error(f"Error during translation: {exc}")
|
47 |
|
48 |
|
49 |
gradio_app = gradio.Interface(
|
|
|
73 |
include_audio=False,
|
74 |
),
|
75 |
title="Concatenative Synthesis: Rule Based Text to Sign Language Translator",
|
76 |
+
description=description,
|
|
|
|
|
77 |
examples=[
|
78 |
["یہ بہت اچھا ہے۔", "ur", "pakistan-sign-language"],
|
79 |
["یہ کام بہت آسان ہے۔", "ur", "pakistan-sign-language"],
|
80 |
["पाँच घंटे।", "hi", "pakistan-sign-language"],
|
81 |
+
# ["आप कैसे हैं?", "hi", "pakistan-sign-language"],
|
82 |
],
|
83 |
allow_flagging="auto",
|
84 |
+
flagging_callback=hf_writer,
|
85 |
+
thumbnail="https://cdn-uploads.huggingface.co/production/uploads/6368b375fbfe97c16a401079/1hUEuDUvqCZM0fLVhIAT1.png",
|
86 |
+
# cache_examples="lazy",
|
87 |
)
|
88 |
|
89 |
if __name__ == "__main__":
|