Update app.py
Browse files
app.py
CHANGED
|
@@ -207,7 +207,7 @@ with gr.Blocks(css="""
|
|
| 207 |
intro = gr.HTML('<h1 class="title">Arabic Spelling Checker 🤗</h1>')
|
| 208 |
description = gr.HTML('<p class="desc">Web-based app to detect spelling mistakes in Arabic words using dynamic programming</p>')
|
| 209 |
text = gr.Textbox(label="النص", elem_id="input")
|
| 210 |
-
btn = gr.Button("Spelling
|
| 211 |
output = gr.HTML()
|
| 212 |
|
| 213 |
btn.click(ar_spelling_checker, [text], output)
|
|
|
|
| 207 |
intro = gr.HTML('<h1 class="title">Arabic Spelling Checker 🤗</h1>')
|
| 208 |
description = gr.HTML('<p class="desc">Web-based app to detect spelling mistakes in Arabic words using dynamic programming</p>')
|
| 209 |
text = gr.Textbox(label="النص", elem_id="input")
|
| 210 |
+
btn = gr.Button("Check Spelling ")
|
| 211 |
output = gr.HTML()
|
| 212 |
|
| 213 |
btn.click(ar_spelling_checker, [text], output)
|