Commit ·
b5b2433
1
Parent(s): bafc7d8
try and fix image rendering
Browse files- .gitignore +1 -0
- README.md +2 -3
- app.py +2 -3
.gitignore
CHANGED
|
@@ -1 +1,2 @@
|
|
| 1 |
/.gradio/
|
|
|
|
|
|
| 1 |
/.gradio/
|
| 2 |
+
__pycache__/
|
README.md
CHANGED
|
@@ -10,7 +10,7 @@ pinned: false
|
|
| 10 |
license: mit
|
| 11 |
---
|
| 12 |
|
| 13 |
-
# Dictionary-Based Lemmatizer for Romansh Varieties
|
| 14 |
|
| 15 |
This demo visualises the functionalities of the package "rumlem", available at:
|
| 16 |
|
|
@@ -21,8 +21,7 @@ Provided a Romansh text, the lemmatizer splits it into words and looks up each w
|
|
| 21 |
|
| 22 |
For example, if a Romansh text contains the word _lavuraiva_, the lemmatizer traces the word back to the Vallader and Puter dictionaries:
|
| 23 |
|
| 24 |
-
|
| 25 |
-
alt="illustration" width="400"/>
|
| 26 |
|
| 27 |
Typical use cases for the lemmatizer include:
|
| 28 |
|
|
|
|
| 10 |
license: mit
|
| 11 |
---
|
| 12 |
|
| 13 |
+
# Dictionary-Based Lemmatizer for Romansh Varieties: Demo
|
| 14 |
|
| 15 |
This demo visualises the functionalities of the package "rumlem", available at:
|
| 16 |
|
|
|
|
| 21 |
|
| 22 |
For example, if a Romansh text contains the word _lavuraiva_, the lemmatizer traces the word back to the Vallader and Puter dictionaries:
|
| 23 |
|
| 24 |
+

|
|
|
|
| 25 |
|
| 26 |
Typical use cases for the lemmatizer include:
|
| 27 |
|
app.py
CHANGED
|
@@ -246,11 +246,10 @@ with gr.Blocks(
|
|
| 246 |
|
| 247 |
|
| 248 |
gr.Markdown(
|
| 249 |
-
"# Romansh Lemmatizer"
|
| 250 |
-
"<sup style='color:#FF5252;font-size:0.4em;vertical-align:super'>(BETA)</sup>"
|
| 251 |
)
|
| 252 |
|
| 253 |
-
with gr.Accordion("About", open=False):
|
| 254 |
gr.Markdown(readme_content)
|
| 255 |
|
| 256 |
# === Top Row: Input & Chart ===
|
|
|
|
| 246 |
|
| 247 |
|
| 248 |
gr.Markdown(
|
| 249 |
+
"# RUMLEM - Romansh Lemmatizer Demo"
|
|
|
|
| 250 |
)
|
| 251 |
|
| 252 |
+
with gr.Accordion("About This Demo", open=False):
|
| 253 |
gr.Markdown(readme_content)
|
| 254 |
|
| 255 |
# === Top Row: Input & Chart ===
|