Views
No views yet
| Model | Initialised from... | Training Data |
|---|---|---|
| jargon-general-base | scratch | 8.5GB Web Corpus |
| jargon-general-biomed | jargon-general-base | 5.4GB Medical Corpus |
| jargon-general-legal | jargon-general-base | 18GB Legal Corpus |
| jargon-multidomain-base | jargon-general-base | Medical+Legal Corpora |
| jargon-legal | scratch | 18GB Legal Corpus |
| jargon-legal-4096 | scratch | 18GB Legal Corpus |
| jargon-biomed | scratch | 5.4GB Medical Corpus |
| jargon-biomed-4096 | scratch | 5.4GB Medical Corpus |
| jargon-NACHOS | scratch | NACHOS |
| jargon-NACHOS-4096 | scratch | NACHOS |
| FrenchMedMCQA | MQC | CAS-POS | ESSAI-POS | CAS-SG | MEDLINE | EMEA | E3C-NER | CLISTER | |
|---|---|---|---|---|---|---|---|---|---|
| Task Type | Sequence Classification | Sequence Classification | Token Classification | Token Classification | Token Classification | Token Classification | Token Classification | Token Classification | STS |
| Metric | EMR | Accuracy | Macro-F1 | Macro-F1 | Weighted F1 | Weighted F1 | Weighted F1 | Weighted F1 | Spearman Correlation |
| jargon-general-base | 12.9 | 76.7 | 96.6 | 96.0 | 69.4 | 81.7 | 96.5 | 91.9 | 78.0 |
| jargon-biomed | 15.3 | 91.1 | 96.5 | 95.6 | 75.1 | 83.7 | 96.5 | 93.5 | 74.6 |
| jargon-biomed-4096 | 14.4 | 78.9 | 96.6 | 95.9 | 73.3 | 82.3 | 96.3 | 92.5 | 65.3 |
| jargon-general-biomed | 16.1 | 69.7 | 95.1 | 95.1 | 67.8 | 78.2 | 96.6 | 91.3 | 59.7 |
| jargon-multidomain-base | 14.9 | 86.9 | 96.3 | 96.0 | 70.6 | 82.4 | 96.6 | 92.6 | 74.8 |
| jargon-NACHOS | 13.3 | 90.7 | 96.3 | 96.2 | 75.0 | 83.4 | 96.8 | 93.1 | 70.9 |
| jargon-NACHOS-4096 | 18.4 | 93.2 | 96.2 | 95.9 | 74.9 | 83.8 | 96.8 | 93.2 | 74.9 |
jargon-NACHOS-4096 using the code snippet below:1from transformers import AutoModelForMaskedLM, AutoTokenizer, pipeline
2
3tokenizer = AutoTokenizer.from_pretrained("PantagrueLLM/jargon-NACHOS-4096", trust_remote_code=True)
4model = AutoModelForMaskedLM.from_pretrained("PantagrueLLM/jargon-NACHOS-4096", trust_remote_code=True)
5
6jargon_maskfiller = pipeline("fill-mask", model=model, tokenizer=tokenizer)
7output = jargon_maskfiller("Il est allé au <mask> hier")AutoModel, AutoModelForSequenceClassification, or AutoModelForTokenClassification to load Jargon models, depending on the downstream task in question.1@inproceedings{segonne:hal-04535557,
2 TITLE = {{Jargon: A Suite of Language Models and Evaluation Tasks for French Specialized Domains}},
3 AUTHOR = {Segonne, Vincent and Mannion, Aidan and Alonzo Canul, Laura Cristina and Audibert, Alexandre and Liu, Xingyu and Macaire, C{\'e}cile and Pupier, Adrien and Zhou, Yongxin and Aguiar, Mathilde and Herron, Felix and Norr{\'e}, Magali and Amini, Massih-Reza and Bouillon, Pierrette and Eshkol-Taravella, Iris and Esperan{\c c}a-Rodier, Emmanuelle and Fran{\c c}ois, Thomas and Goeuriot, Lorraine and Goulian, J{\'e}r{\^o}me and Lafourcade, Mathieu and Lecouteux, Benjamin and Portet, Fran{\c c}ois and Ringeval, Fabien and Vandeghinste, Vincent and Coavoux, Maximin and Dinarelli, Marco and Schwab, Didier},
4 URL = {https://hal.science/hal-04535557},
5 BOOKTITLE = {{LREC-COLING 2024 - Joint International Conference on Computational Linguistics, Language Resources and Evaluation}},
6 ADDRESS = {Turin, Italy},
7 YEAR = {2024},
8 MONTH = May,
9 KEYWORDS = {Self-supervised learning ; Pretrained language models ; Evaluation benchmark ; Biomedical document processing ; Legal document processing ; Speech transcription},
10 PDF = {https://hal.science/hal-04535557/file/FB2_domaines_specialises_LREC_COLING24.pdf},
11 HAL_ID = {hal-04535557},
12 HAL_VERSION = {v1},
13}