Text Classification
Transformers
PyTorch
TensorBoard
Safetensors
English
distilbert
text-embeddings-inference
Instructions to use alespalla/distillbert_conv_quality_score with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use alespalla/distillbert_conv_quality_score with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="alespalla/distillbert_conv_quality_score", device_map="auto")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("alespalla/distillbert_conv_quality_score") model = AutoModelForSequenceClassification.from_pretrained("alespalla/distillbert_conv_quality_score", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Librarian Bot: Add base_model information to model
#2
by librarian-bot - opened
README.md
CHANGED
|
@@ -1,15 +1,16 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
| 2 |
license: apache-2.0
|
| 3 |
tags:
|
| 4 |
- transformers
|
| 5 |
- pytorch
|
| 6 |
datasets:
|
| 7 |
- conv_ai_2
|
|
|
|
| 8 |
model-index:
|
| 9 |
- name: distillbert_conv_quality_score
|
| 10 |
results: []
|
| 11 |
-
language:
|
| 12 |
-
- en
|
| 13 |
---
|
| 14 |
|
| 15 |
|
|
|
|
| 1 |
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
license: apache-2.0
|
| 5 |
tags:
|
| 6 |
- transformers
|
| 7 |
- pytorch
|
| 8 |
datasets:
|
| 9 |
- conv_ai_2
|
| 10 |
+
base_model: distilbert-base-uncased
|
| 11 |
model-index:
|
| 12 |
- name: distillbert_conv_quality_score
|
| 13 |
results: []
|
|
|
|
|
|
|
| 14 |
---
|
| 15 |
|
| 16 |
|