Instructions to use software-si/change-language-intent with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use software-si/change-language-intent with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="software-si/change-language-intent")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("software-si/change-language-intent") model = AutoModelForSequenceClassification.from_pretrained("software-si/change-language-intent", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -9,6 +9,7 @@ language:
|
|
| 9 |
base_model:
|
| 10 |
- google-bert/bert-base-multilingual-cased
|
| 11 |
pipeline_tag: text-classification
|
|
|
|
| 12 |
---
|
| 13 |
|
| 14 |
# 🌍 Multilingual Intent Classifier – Language Switching
|
|
|
|
| 9 |
base_model:
|
| 10 |
- google-bert/bert-base-multilingual-cased
|
| 11 |
pipeline_tag: text-classification
|
| 12 |
+
library_name: transformers
|
| 13 |
---
|
| 14 |
|
| 15 |
# 🌍 Multilingual Intent Classifier – Language Switching
|