ianro04 commited on
Commit
30f52cc
·
verified ·
1 Parent(s): 27d8791

Attempt to fix broken markdown links

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -129,9 +129,9 @@ with gr.Blocks() as demo:
129
  gr.Markdown("# ScandiProb: Hybrid Language ID Classifier")
130
  gr.Markdown("### By Ian Rodriguez")
131
  gr.Markdown("Enter text or upload a file to output independent probabilities that it is written in **Norwegian**, **Swedish**, **Danish**, or **None of the Above / Non-Scandinavian**. Only first 512 tokens of input will be used.")
132
- gr.Markdown("This model utilizes a fine-tuned [ScandiBERT](https://huggingface.co/vesteinn/ScandiBERT), trained on limited amounts of [OPUS-100](https://huggingface.co/datasets/Helsinki-NLP/opus-100/), and combined with regex-enforced heuristics. Achieves ~93% macro-F1 score on OPUS-100 test set and ~84% macro-F1 score against the comprehensive [SLIDE eval set](https://huggingface.co/datasets/ltg/slide), with a fraction of the training data used in SLIDE.")
133
- gr.Markdown("[This project is licensed under AGPL-3.0.](https://www.gnu.org/licenses/agpl-3.0.en.html)")
134
- gr.Markdown("([GitHub](https://github.com/cloudeerie/scandiprob) | [Kaggle Notebooks](https://www.kaggle.com/code/cloudeerie/scandiprob/) | [Raw Model Page](https://huggingface.co/ianro04/ScandiProb))")
135
 
136
  with gr.Row():
137
  with gr.Column():
 
129
  gr.Markdown("# ScandiProb: Hybrid Language ID Classifier")
130
  gr.Markdown("### By Ian Rodriguez")
131
  gr.Markdown("Enter text or upload a file to output independent probabilities that it is written in **Norwegian**, **Swedish**, **Danish**, or **None of the Above / Non-Scandinavian**. Only first 512 tokens of input will be used.")
132
+ gr.Markdown("This model utilizes a fine-tuned [ScandiBERT](https://huggingface.co/vesteinn/ScandiBERT), trained on limited amounts of [OPUS-100](https://huggingface.co/datasets/Helsinki-NLP/opus-100/), and combined with regex-enforced heuristics. Achieves ~93% macro-F1 score on OPUS-100 test set and ~84% macro-F1 score against the comprehensive [SLIDE eval set](https://huggingface.co/datasets/ltg/slide), with a fraction of the training data used in SLIDE.", sanitize_html=False)
133
+ gr.Markdown("[This project is licensed under AGPL-3.0.](https://www.gnu.org/licenses/agpl-3.0.en.html)", sanitize_html=False)
134
+ gr.Markdown("([GitHub](https://github.com/cloudeerie/scandiprob) | [Kaggle Notebooks](https://www.kaggle.com/code/cloudeerie/scandiprob/) | [Raw Model Page](https://huggingface.co/ianro04/ScandiProb))", sanitize_html=False)
135
 
136
  with gr.Row():
137
  with gr.Column():