Text Classification
Transformers
Safetensors
English
xlm-roberta
skill-detection
sentence-classification
ESCO
text-embeddings-inference
Instructions to use nurlanm/ESCOXLM-R_ENG with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use nurlanm/ESCOXLM-R_ENG with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="nurlanm/ESCOXLM-R_ENG")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("nurlanm/ESCOXLM-R_ENG") model = AutoModelForSequenceClassification.from_pretrained("nurlanm/ESCOXLM-R_ENG", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -16,6 +16,6 @@ metrics:
|
|
| 16 |
- accuracy
|
| 17 |
---
|
| 18 |
|
| 19 |
-
We fine
|
| 20 |
|
| 21 |
Musazade, N., Zhang, M., & Mezei, J. (2025, August). Cross-Lingual Sentence-Level Skill Identification in English and Danish Job Advertisements. In Proceedings of the 8th International Conference on Natural Language and Speech Processing (ICNLSP-2025) (pp. 410-415).
|
|
|
|
| 16 |
- accuracy
|
| 17 |
---
|
| 18 |
|
| 19 |
+
We fine-tune jjzha/esco-xlm-roberta-large for sentence-level binary skill identification. The results show 94% accuracy and F1 score in English. Furthermore, the study demonstrates the model's effectiveness for cross-lingual transfer. Please refer to the original paper for more information, and if you use this work, please cite the following:
|
| 20 |
|
| 21 |
Musazade, N., Zhang, M., & Mezei, J. (2025, August). Cross-Lingual Sentence-Level Skill Identification in English and Danish Job Advertisements. In Proceedings of the 8th International Conference on Natural Language and Speech Processing (ICNLSP-2025) (pp. 410-415).
|