ltg
/

Text Classification
Safetensors
custom_code
MariaFjodorowa commited on
Commit
0c115ff
·
verified ·
1 Parent(s): eecc381

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +44 -0
README.md ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - da
5
+ - 'no'
6
+ - nb
7
+ - nn
8
+ - sv
9
+ base_model:
10
+ - ltg/norbert3-base
11
+ pipeline_tag: text-classification
12
+ ---
13
+
14
+ # SLIDE-base
15
+
16
+ Scandinavian language identification model described in paper **[Multi-label Scandinavian Language Identification (SLIDE)
17
+ ](https://arxiv.org/abs/2502.06692)**.
18
+
19
+ ## SLIDE sizes
20
+ - [SLIDE-base (123M)](https://huggingface.co/ltg/SLIDE-base)
21
+ - [SLIDE-small (40M)](https://huggingface.co/ltg/SLIDE-small)
22
+ - [SLIDE-x-small (15M)](https://huggingface.co/ltg/SLIDE-x-small)
23
+
24
+ ## Example usage
25
+ This model currently needs a custom wrapper from modeling_norbert.py, you should therefore load the model with trust_remote_code=True.
26
+
27
+ ```commandline
28
+ git clone https://github.com/ltgoslo/slide
29
+ cd src/
30
+ python3 usage_example.py
31
+ ```
32
+ ## Cite us
33
+
34
+ ```
35
+ @misc{fedorova2025multilabelscandinavianlanguageidentification,
36
+ title={Multi-label Scandinavian Language Identification (SLIDE)},
37
+ author={Mariia Fedorova and Jonas Sebulon Frydenberg and Victoria Handford and Victoria Ovedie Chruickshank Langø and Solveig Helene Willoch and Marthe Løken Midtgaard and Yves Scherrer and Petter Mæhlum and David Samuel},
38
+ year={2025},
39
+ eprint={2502.06692},
40
+ archivePrefix={arXiv},
41
+ primaryClass={cs.CL},
42
+ url={https://arxiv.org/abs/2502.06692},
43
+ }
44
+ ```