Text Classification
Transformers
PyTorch
Swedish
bert
feature-extraction
sentence-similarity
text-embeddings-inference
Instructions to use Gabriel/Swe-review-setfit-model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Gabriel/Swe-review-setfit-model with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Gabriel/Swe-review-setfit-model")# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("Gabriel/Swe-review-setfit-model") model = AutoModel.from_pretrained("Gabriel/Swe-review-setfit-model", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,11 +1,13 @@
|
|
| 1 |
---
|
| 2 |
-
|
|
|
|
|
|
|
|
|
|
| 3 |
tags:
|
| 4 |
-
-
|
| 5 |
- feature-extraction
|
| 6 |
- sentence-similarity
|
| 7 |
- transformers
|
| 8 |
-
|
| 9 |
---
|
| 10 |
|
| 11 |
# {MODEL_NAME}
|
|
|
|
| 1 |
---
|
| 2 |
+
language: sv
|
| 3 |
+
license: mit
|
| 4 |
+
|
| 5 |
+
pipeline_tag: text-classification
|
| 6 |
tags:
|
| 7 |
+
- text-classification
|
| 8 |
- feature-extraction
|
| 9 |
- sentence-similarity
|
| 10 |
- transformers
|
|
|
|
| 11 |
---
|
| 12 |
|
| 13 |
# {MODEL_NAME}
|