Instructions to use learn-abc/banking77-intent-classifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use learn-abc/banking77-intent-classifier with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="learn-abc/banking77-intent-classifier")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("learn-abc/banking77-intent-classifier") model = AutoModelForSequenceClassification.from_pretrained("learn-abc/banking77-intent-classifier") - Notebooks
- Google Colab
- Kaggle
update README file
Browse files
README.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
| 1 |
---
|
| 2 |
library_name: transformers
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
---
|
| 5 |
|
| 6 |
**Repo:** `learn-abc/banking77-intent-classifier`
|
|
|
|
| 1 |
---
|
| 2 |
library_name: transformers
|
| 3 |
+
license: mit
|
| 4 |
+
datasets:
|
| 5 |
+
- PolyAI/banking77
|
| 6 |
+
language:
|
| 7 |
+
- en
|
| 8 |
+
base_model:
|
| 9 |
+
- google-bert/bert-base-uncased
|
| 10 |
---
|
| 11 |
|
| 12 |
**Repo:** `learn-abc/banking77-intent-classifier`
|