Text Classification
Transformers
TensorBoard
Safetensors
English
xlm-roberta
Generated from Trainer
text-embeddings-inference
Instructions to use ubffm/academic_text_classifier_en with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ubffm/academic_text_classifier_en with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="ubffm/academic_text_classifier_en")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("ubffm/academic_text_classifier_en") model = AutoModelForSequenceClassification.from_pretrained("ubffm/academic_text_classifier_en", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -49,7 +49,8 @@ The model is fine-tuned with academic publications in Linguistics, to classify t
|
|
| 49 |
|
| 50 |
Intended uses:
|
| 51 |
|
| 52 |
-
-
|
|
|
|
| 53 |
|
| 54 |
Limitations:
|
| 55 |
|
|
|
|
| 49 |
|
| 50 |
Intended uses:
|
| 51 |
|
| 52 |
+
- filter out noise from OCR of academic texts (conference papers, journals, books etc.)
|
| 53 |
+
- extract main text in academic texts for down-stream NLP tasks
|
| 54 |
|
| 55 |
Limitations:
|
| 56 |
|