Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -258,6 +258,14 @@ def wic_ud(sentence: str):
|
|
| 258 |
# INTERFACE GRADIO
|
| 259 |
# ============================================================
|
| 260 |
with gr.Blocks() as demo:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 261 |
|
| 262 |
# LOGO + T脥TULO
|
| 263 |
gr.HTML(
|
|
@@ -326,12 +334,5 @@ Nesta vers茫o (HF), n茫o h谩 suporte a translitera莽茫o latina nem buscas parcia
|
|
| 326 |
|
| 327 |
)
|
| 328 |
|
| 329 |
-
demo.launch(
|
| 330 |
-
css="""
|
| 331 |
-
#ddgp-logo {
|
| 332 |
-
max-width: 70px;
|
| 333 |
-
height: auto;
|
| 334 |
-
}
|
| 335 |
-
"""
|
| 336 |
-
)
|
| 337 |
|
|
|
|
| 258 |
# INTERFACE GRADIO
|
| 259 |
# ============================================================
|
| 260 |
with gr.Blocks() as demo:
|
| 261 |
+
with gr.Blocks(
|
| 262 |
+
css="""
|
| 263 |
+
#ddgp-logo {
|
| 264 |
+
max-width: 80px;
|
| 265 |
+
height: auto;
|
| 266 |
+
}
|
| 267 |
+
"""
|
| 268 |
+
) as demo:
|
| 269 |
|
| 270 |
# LOGO + T脥TULO
|
| 271 |
gr.HTML(
|
|
|
|
| 334 |
|
| 335 |
)
|
| 336 |
|
| 337 |
+
demo.launch()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 338 |
|