Instructions to use raulgdp/roberta-large-ner-qlorafinetune with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use raulgdp/roberta-large-ner-qlorafinetune with PEFT:
from peft import PeftModel from transformers import AutoModelForTokenClassification base_model = AutoModelForTokenClassification.from_pretrained("FacebookAI/xlm-roberta-large") model = PeftModel.from_pretrained(base_model, "raulgdp/roberta-large-ner-qlorafinetune") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -17,7 +17,7 @@ should probably proofread and complete it, then remove this comment. -->
|
|
| 17 |
# roberta-large-ner-qlorafinetune
|
| 18 |
|
| 19 |
Este modelo afinado con [FacebookAI/xlm-roberta-large](https://huggingface.co/FacebookAI/xlm-roberta-large) sobre conll2002 dataset. El importante
|
| 20 |
-
resultado importante tiene que ver con el bcth_size=32
|
| 21 |
|
| 22 |
## Model description
|
| 23 |
|
|
|
|
| 17 |
# roberta-large-ner-qlorafinetune
|
| 18 |
|
| 19 |
Este modelo afinado con [FacebookAI/xlm-roberta-large](https://huggingface.co/FacebookAI/xlm-roberta-large) sobre conll2002 dataset. El importante
|
| 20 |
+
resultado importante tiene que ver con el bcth_size=32 y fue cuantificado con PEFT para correrlo en una GPU de 14 Gz.
|
| 21 |
|
| 22 |
## Model description
|
| 23 |
|