Instructions to use vineetsharma/customer-support-intent-albert with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use vineetsharma/customer-support-intent-albert with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="vineetsharma/customer-support-intent-albert")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("vineetsharma/customer-support-intent-albert") model = AutoModelForSequenceClassification.from_pretrained("vineetsharma/customer-support-intent-albert") - Notebooks
- Google Colab
- Kaggle
Commit ·
8a91d35
1
Parent(s): 240176b
Update README.md
Browse files
README.md
CHANGED
|
@@ -11,7 +11,7 @@ model-index:
|
|
| 11 |
widget:
|
| 12 |
- text: "please help me change several items of an order"
|
| 13 |
example_title: "example 1"
|
| 14 |
-
- text: "i need
|
| 15 |
example_title: "example 2"
|
| 16 |
- text: "can you please change the shipping address"
|
| 17 |
example_title: "example 3"
|
|
|
|
| 11 |
widget:
|
| 12 |
- text: "please help me change several items of an order"
|
| 13 |
example_title: "example 1"
|
| 14 |
+
- text: "i need the invoice of the last order"
|
| 15 |
example_title: "example 2"
|
| 16 |
- text: "can you please change the shipping address"
|
| 17 |
example_title: "example 3"
|