Commit
·
ba8f254
1
Parent(s):
7d85855
fix typos and make url column clickable
Browse files
app.py
CHANGED
|
@@ -22,7 +22,7 @@ def update_table(search_query):
|
|
| 22 |
|
| 23 |
with gr.Blocks() as app:
|
| 24 |
with gr.Tabs():
|
| 25 |
-
with gr.TabItem("
|
| 26 |
gr.Markdown(
|
| 27 |
"""
|
| 28 |
# 🚀 Iniciativas de PLN en español
|
|
@@ -62,13 +62,14 @@ with gr.Blocks() as app:
|
|
| 62 |
interactive=False,
|
| 63 |
wrap=True,
|
| 64 |
column_widths=["40%", "15%", "15%", "20%", "20%"],
|
|
|
|
| 65 |
)
|
| 66 |
search_box.change(fn=update_table, inputs=search_box, outputs=table)
|
| 67 |
|
| 68 |
with gr.TabItem("English"):
|
| 69 |
gr.Markdown(
|
| 70 |
"""
|
| 71 |
-
# 🚀
|
| 72 |
|
| 73 |
Discover the initiatives driving NLP advancements in Spanish and other low-resource languages spoken in LatAm and Spain.
|
| 74 |
|
|
|
|
| 22 |
|
| 23 |
with gr.Blocks() as app:
|
| 24 |
with gr.Tabs():
|
| 25 |
+
with gr.TabItem("Español"):
|
| 26 |
gr.Markdown(
|
| 27 |
"""
|
| 28 |
# 🚀 Iniciativas de PLN en español
|
|
|
|
| 62 |
interactive=False,
|
| 63 |
wrap=True,
|
| 64 |
column_widths=["40%", "15%", "15%", "20%", "20%"],
|
| 65 |
+
datatype="markdown",
|
| 66 |
)
|
| 67 |
search_box.change(fn=update_table, inputs=search_box, outputs=table)
|
| 68 |
|
| 69 |
with gr.TabItem("English"):
|
| 70 |
gr.Markdown(
|
| 71 |
"""
|
| 72 |
+
# 🚀 Spanish NLP Initiatives
|
| 73 |
|
| 74 |
Discover the initiatives driving NLP advancements in Spanish and other low-resource languages spoken in LatAm and Spain.
|
| 75 |
|