Instructions to use nmcahill/mtbi-classifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use nmcahill/mtbi-classifier with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="nmcahill/mtbi-classifier")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("nmcahill/mtbi-classifier") model = AutoModelForSequenceClassification.from_pretrained("nmcahill/mtbi-classifier") - Notebooks
- Google Colab
- Kaggle
Update tokenizer_config.json
Browse files- tokenizer_config.json +3 -6
tokenizer_config.json
CHANGED
|
@@ -1,6 +1,3 @@
|
|
| 1 |
-
{
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
"distilbert-base-cased-distilled-squad": {"do_lower_case": false},
|
| 5 |
-
"distilbert-base-german-cased": {"do_lower_case": false},
|
| 6 |
-
"distilbert-base-multilingual-cased": {"do_lower_case": false}}
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"do_lower_case": true
|
| 3 |
+
}
|
|
|
|
|
|
|
|
|