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
#3
by nmcahill - opened
- tokenizer_config.json +1 -1
tokenizer_config.json
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
{
|
| 2 |
-
|
| 3 |
}
|
|
|
|
| 1 |
{
|
| 2 |
+
"do_lower_case": true
|
| 3 |
}
|