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", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Commit ·
240176b
1
Parent(s): c50f450
Update README.md
Browse files
README.md
CHANGED
|
@@ -9,11 +9,11 @@ model-index:
|
|
| 9 |
- name: customer-support-intent-albert
|
| 10 |
results: []
|
| 11 |
widget:
|
| 12 |
-
- text: "please help me change several items of an order
|
| 13 |
example_title: "example 1"
|
| 14 |
-
- text: "i need to invoice of the last order
|
| 15 |
example_title: "example 2"
|
| 16 |
-
- text: "can you please change the shipping address
|
| 17 |
example_title: "example 3"
|
| 18 |
---
|
| 19 |
|
|
|
|
| 9 |
- name: customer-support-intent-albert
|
| 10 |
results: []
|
| 11 |
widget:
|
| 12 |
+
- text: "please help me change several items of an order"
|
| 13 |
example_title: "example 1"
|
| 14 |
+
- text: "i need to invoice of the last order"
|
| 15 |
example_title: "example 2"
|
| 16 |
+
- text: "can you please change the shipping address"
|
| 17 |
example_title: "example 3"
|
| 18 |
---
|
| 19 |
|