permitt commited on
Commit
afde0ac
·
1 Parent(s): 695d464

feat: demo app

Browse files
Files changed (1) hide show
  1. app.py +4 -9
app.py CHANGED
@@ -58,12 +58,6 @@ EXAMPLES = {
58
  "Smatra se jednim od najvećih pisaca južnoslovenskih književnosti "
59
  "dvadesetog veka."
60
  ),
61
- "Београд (Cyrillic)": (
62
- "Београд је главни град Србије и највећи град у земљи. Налази се на ушћу "
63
- "Саве у Дунав. Спада међу најстарије градове у Европи, са историјом дугом "
64
- "више од седам хиљада година. Према попису из 2022. године, Београд има "
65
- "око 1,4 милиона становника."
66
- ),
67
  }
68
 
69
  DEFAULT_EXAMPLE = "Psihometrija (long context)"
@@ -190,7 +184,7 @@ with gr.Blocks(title="ModernBERTić Large") as demo:
190
  """
191
  # ModernBERTić Large
192
  First ModernBERT-style encoder for **Bosnian / Croatian / Montenegrin / Serbian**.
193
- Pretrained on ~66B tokens with **8192-token context window**.
194
 
195
  **How to use:** pick an example below or paste your own BCMS text, then **click any word** in the highlighted view to mask it. The model will predict what fits.
196
  """
@@ -236,8 +230,9 @@ with gr.Blocks(title="ModernBERTić Large") as demo:
236
 
237
  gr.Markdown(
238
  "---\n"
239
- "Trained on EuroHPC Leonardo (64× A100). "
240
- "Paper, checkpoints, and SuperGLUE-SR results: [link]."
 
241
  )
242
 
243
 
 
58
  "Smatra se jednim od najvećih pisaca južnoslovenskih književnosti "
59
  "dvadesetog veka."
60
  ),
 
 
 
 
 
 
61
  }
62
 
63
  DEFAULT_EXAMPLE = "Psihometrija (long context)"
 
184
  """
185
  # ModernBERTić Large
186
  First ModernBERT-style encoder for **Bosnian / Croatian / Montenegrin / Serbian**.
187
+ Pretrained on ~60B tokens with **8192-token context window**.
188
 
189
  **How to use:** pick an example below or paste your own BCMS text, then **click any word** in the highlighted view to mask it. The model will predict what fits.
190
  """
 
230
 
231
  gr.Markdown(
232
  "---\n"
233
+ "Trained on EuroHPC Leonardo (64× A100) at Recrewty. https://recrewty.com"
234
+ "You can find the results at SuperGLUE-SR results: https://balkanbench.com/leaderboard."
235
+ "Link to blogposts and release: https://permitt.io."
236
  )
237
 
238