Text Classification
Transformers
Safetensors
Spanish
bertin_alc
feature-extraction
multi-label-classification
spanish
public-policy
bertin
roberta
custom_code
Instructions to use PENCR/bertin-alc-multilabel with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use PENCR/bertin-alc-multilabel with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="PENCR/bertin-alc-multilabel", trust_remote_code=True)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("PENCR/bertin-alc-multilabel", trust_remote_code=True, dtype="auto") - Notebooks
- Google Colab
- Kaggle
| { | |
| "add_prefix_space": false, | |
| "backend": "tokenizers", | |
| "bos_token": "<s>", | |
| "cls_token": "<s>", | |
| "eos_token": "</s>", | |
| "errors": "replace", | |
| "is_local": false, | |
| "local_files_only": false, | |
| "mask_token": "<mask>", | |
| "max_len": 512, | |
| "model_max_length": 512, | |
| "pad_token": "<pad>", | |
| "sep_token": "</s>", | |
| "tokenizer_class": "RobertaTokenizer", | |
| "trim_offsets": true, | |
| "unk_token": "<unk>" | |
| } | |