mdsr commited on
Commit
1577d3f
·
1 Parent(s): 67615e2

smaller text box

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -10,7 +10,9 @@ DESCRIPTION = """Enter your text and select languages from the dropdowns, then c
10
 
11
  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)
12
 
13
- > 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."""
 
 
14
 
15
  TITLE = "Concatenative Synthesis: Rule Based Text to Sign Language Translator"
16
 
@@ -111,7 +113,7 @@ with gradio.Blocks(title=TITLE, head=CUSTOM_JS) as gradio_app:
111
  with gradio.Row():
112
  with gradio.Column():
113
  source_textbox = gradio.Textbox(
114
- lines=5,
115
  placeholder="Enter Text Here...",
116
  label="Spoken Language Sentence",
117
  show_copy_button=True,
 
10
 
11
  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)
12
 
13
+ > 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.
14
+ > This version needs to re-encode the generated video so that will take some extra time after translation.
15
+ """.strip()
16
 
17
  TITLE = "Concatenative Synthesis: Rule Based Text to Sign Language Translator"
18
 
 
113
  with gradio.Row():
114
  with gradio.Column():
115
  source_textbox = gradio.Textbox(
116
+ lines=1,
117
  placeholder="Enter Text Here...",
118
  label="Spoken Language Sentence",
119
  show_copy_button=True,