Text Classification
sentence-transformers
PyTorch
Transformers
xlm-roberta
feature-extraction
SetFit
News
text-embeddings-inference
Instructions to use KnutJaegersberg/topic-classification-IPTC-subject-labels with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use KnutJaegersberg/topic-classification-IPTC-subject-labels with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("KnutJaegersberg/topic-classification-IPTC-subject-labels") sentences = [ "The weather is lovely today.", "It's so sunny outside!", "He drove to the stadium." ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [3, 3] - Transformers
How to use KnutJaegersberg/topic-classification-IPTC-subject-labels with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="KnutJaegersberg/topic-classification-IPTC-subject-labels")# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("KnutJaegersberg/topic-classification-IPTC-subject-labels") model = AutoModel.from_pretrained("KnutJaegersberg/topic-classification-IPTC-subject-labels") - Notebooks
- Google Colab
- Kaggle
Librarian Bot: Update dataset YAML metadata for model
#1
by librarian-bot - opened
README.md
CHANGED
|
@@ -1,10 +1,11 @@
|
|
| 1 |
---
|
| 2 |
-
pipeline_tag: text-classification
|
| 3 |
tags:
|
| 4 |
- sentence-transformers
|
| 5 |
- transformers
|
| 6 |
- SetFit
|
| 7 |
- News
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
|
|
|
|
| 1 |
---
|
|
|
|
| 2 |
tags:
|
| 3 |
- sentence-transformers
|
| 4 |
- transformers
|
| 5 |
- SetFit
|
| 6 |
- News
|
| 7 |
+
datasets: KnutJaegersberg/News_topics_IPTC_codes_long
|
| 8 |
+
pipeline_tag: text-classification
|
| 9 |
---
|
| 10 |
|
| 11 |
|