Text Classification
Transformers
TensorFlow
distilbert
generated_from_keras_callback
text-embeddings-inference
Instructions to use fidsinn/distilbert-base-future with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use fidsinn/distilbert-base-future with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="fidsinn/distilbert-base-future")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("fidsinn/distilbert-base-future") model = AutoModelForSequenceClassification.from_pretrained("fidsinn/distilbert-base-future") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse filesWidget example added
README.md
CHANGED
|
@@ -5,6 +5,11 @@ tags:
|
|
| 5 |
model-index:
|
| 6 |
- name: distilbert-base-future
|
| 7 |
results: []
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
<!-- This model card has been generated automatically according to the information Keras had access to. You should
|
|
|
|
| 5 |
model-index:
|
| 6 |
- name: distilbert-base-future
|
| 7 |
results: []
|
| 8 |
+
widget:
|
| 9 |
+
- text: "We will have a good time."
|
| 10 |
+
example_title: "Positive"
|
| 11 |
+
- text: "We had a good time."
|
| 12 |
+
example_title: "Negative"
|
| 13 |
---
|
| 14 |
|
| 15 |
<!-- This model card has been generated automatically according to the information Keras had access to. You should
|