Text Classification
Transformers
Safetensors
Portuguese
bert
text-quality
portuguese
text-embeddings-inference
Instructions to use TucanoBR/BERTimbau-large-text-filter with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use TucanoBR/BERTimbau-large-text-filter with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="TucanoBR/BERTimbau-large-text-filter")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("TucanoBR/BERTimbau-large-text-filter") model = AutoModelForSequenceClassification.from_pretrained("TucanoBR/BERTimbau-large-text-filter", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -55,11 +55,14 @@ result = classifier("Os tucanos são aves que correspondem à família Ramphasti
|
|
| 55 |
## Cite as 🤗
|
| 56 |
|
| 57 |
```latex
|
| 58 |
-
@misc{
|
| 59 |
-
|
| 60 |
-
|
| 61 |
-
|
| 62 |
-
|
|
|
|
|
|
|
|
|
|
| 63 |
}
|
| 64 |
```
|
| 65 |
|
|
|
|
| 55 |
## Cite as 🤗
|
| 56 |
|
| 57 |
```latex
|
| 58 |
+
@misc{correa2024tucanoadvancingneuraltext,
|
| 59 |
+
title={{Tucano: Advancing Neural Text Generation for Portuguese}},
|
| 60 |
+
author={Corr{\^e}a, Nicholas Kluge and Sen, Aniket and Falk, Sophia and Fatimah, Shiza},
|
| 61 |
+
year={2024},
|
| 62 |
+
eprint={2411.07854},
|
| 63 |
+
archivePrefix={arXiv},
|
| 64 |
+
primaryClass={cs.CL},
|
| 65 |
+
url={https://arxiv.org/abs/2411.07854},
|
| 66 |
}
|
| 67 |
```
|
| 68 |
|