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") - Notebooks
- Google Colab
- Kaggle
Update config.json
Browse files- config.json +1 -1
config.json
CHANGED
|
@@ -43,5 +43,5 @@
|
|
| 43 |
"transformers_version": "4.56.2",
|
| 44 |
"type_vocab_size": 2,
|
| 45 |
"use_cache": true,
|
| 46 |
-
"vocab_size":
|
| 47 |
}
|
|
|
|
| 43 |
"transformers_version": "4.56.2",
|
| 44 |
"type_vocab_size": 2,
|
| 45 |
"use_cache": true,
|
| 46 |
+
"vocab_size": 105879
|
| 47 |
}
|