Text Classification
Transformers
PyTorch
Safetensors
Italian
distilbert
cross-encoder
sentence-similarity
text-embeddings-inference
Instructions to use efederici/cross-encoder-distilbert-it with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use efederici/cross-encoder-distilbert-it with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="efederici/cross-encoder-distilbert-it")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("efederici/cross-encoder-distilbert-it") model = AutoModelForSequenceClassification.from_pretrained("efederici/cross-encoder-distilbert-it") - Notebooks
- Google Colab
- Kaggle
Update model metadata to set pipeline tag to the new `text-ranking` and library name to `sentence-transformers`
#2
by tomaarsen HF Staff - opened
README.md
CHANGED
|
@@ -1,12 +1,13 @@
|
|
| 1 |
---
|
| 2 |
-
pipeline_tag: text-
|
| 3 |
license: apache-2.0
|
| 4 |
-
language:
|
| 5 |
-
|
| 6 |
tags:
|
| 7 |
- cross-encoder
|
| 8 |
- sentence-similarity
|
| 9 |
- transformers
|
|
|
|
| 10 |
---
|
| 11 |
# Cross-Encoder
|
| 12 |
|
|
|
|
| 1 |
---
|
| 2 |
+
pipeline_tag: text-ranking
|
| 3 |
license: apache-2.0
|
| 4 |
+
language:
|
| 5 |
+
- it
|
| 6 |
tags:
|
| 7 |
- cross-encoder
|
| 8 |
- sentence-similarity
|
| 9 |
- transformers
|
| 10 |
+
library_name: sentence-transformers
|
| 11 |
---
|
| 12 |
# Cross-Encoder
|
| 13 |
|