Instructions to use jonas/sdg_classifier_osdg with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use jonas/sdg_classifier_osdg with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="jonas/sdg_classifier_osdg")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("jonas/sdg_classifier_osdg") model = AutoModelForSequenceClassification.from_pretrained("jonas/sdg_classifier_osdg") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -14,6 +14,8 @@ Machine Learning model for classifying text according to the first 15 of the 17
|
|
| 14 |
|
| 15 |
Data comes from the amazing https://osdg.ai/ community!
|
| 16 |
|
|
|
|
|
|
|
| 17 |
# Model Training Specifics
|
| 18 |
|
| 19 |
- Problem type: Multi-class Classification
|
|
|
|
| 14 |
|
| 15 |
Data comes from the amazing https://osdg.ai/ community!
|
| 16 |
|
| 17 |
+
* There is an improved version (finetuned Roberta) of the model available here: https://huggingface.co/jonas/roberta-base-finetuned-sdg
|
| 18 |
+
|
| 19 |
# Model Training Specifics
|
| 20 |
|
| 21 |
- Problem type: Multi-class Classification
|