Text Classification
Transformers
PyTorch
TensorFlow
Safetensors
xlm-roberta
Generated from Trainer
text-embeddings-inference
Instructions to use papluca/xlm-roberta-base-language-detection with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use papluca/xlm-roberta-base-language-detection with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="papluca/xlm-roberta-base-language-detection")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("papluca/xlm-roberta-base-language-detection") model = AutoModelForSequenceClassification.from_pretrained("papluca/xlm-roberta-base-language-detection", device_map="auto") - Inference
- Notebooks
- Google Colab
- Kaggle
Add dataset info
Browse files
README.md
CHANGED
|
@@ -12,7 +12,7 @@ model-index:
|
|
| 12 |
|
| 13 |
# xlm-roberta-base-language-detection
|
| 14 |
|
| 15 |
-
This model is a fine-tuned version of [xlm-roberta-base](https://huggingface.co/xlm-roberta-base) on the
|
| 16 |
|
| 17 |
## Intended uses & limitations
|
| 18 |
|
|
|
|
| 12 |
|
| 13 |
# xlm-roberta-base-language-detection
|
| 14 |
|
| 15 |
+
This model is a fine-tuned version of [xlm-roberta-base](https://huggingface.co/xlm-roberta-base) on the [Language Identification](https://huggingface.co/datasets/papluca/language-identification#additional-information) dataset.
|
| 16 |
|
| 17 |
## Intended uses & limitations
|
| 18 |
|