perkan commited on
Commit
81ed170
1 Parent(s): 8232ee0

[FIX] -> removing redundant placeholder

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -54,7 +54,7 @@ with gr.Blocks() as demo:
54
  gr.Markdown("# Translation Models\nTranslate text using base and fine-tuned models.")
55
 
56
  with gr.Row():
57
- text_input = gr.Textbox(placeholder="Enter text to translate", label="Input", placeholder="If you have behaved badly, repent, make what amends you can and address yourself to the task of behaving better next time. On no account brood over your wrongdoing. Rolling in the muck is not the best way of getting clean.")
58
  model_select = gr.Dropdown(choices=["S model", "M model", "L model"], label="Select Fine-tuned Model")
59
  translate_btn = gr.Button("Translate")
60
 
 
54
  gr.Markdown("# Translation Models\nTranslate text using base and fine-tuned models.")
55
 
56
  with gr.Row():
57
+ text_input = gr.Textbox(placeholder="Enter text to translate", label="Input")
58
  model_select = gr.Dropdown(choices=["S model", "M model", "L model"], label="Select Fine-tuned Model")
59
  translate_btn = gr.Button("Translate")
60