Text Classification
Transformers
Safetensors
English
bert
PyTorch
multi-class-classification
text-embeddings-inference
Instructions to use AIPsy/bert-base-client-topic-classification-eng with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use AIPsy/bert-base-client-topic-classification-eng with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="AIPsy/bert-base-client-topic-classification-eng")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("AIPsy/bert-base-client-topic-classification-eng") model = AutoModelForSequenceClassification.from_pretrained("AIPsy/bert-base-client-topic-classification-eng") - Notebooks
- Google Colab
- Kaggle
Upload tokenizer
Browse files- tokenizer.json +0 -0
- tokenizer_config.json +2 -2
tokenizer.json
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|
tokenizer_config.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
| 1 |
{
|
| 2 |
"backend": "tokenizers",
|
| 3 |
"cls_token": "[CLS]",
|
| 4 |
-
"do_lower_case":
|
| 5 |
"is_local": true,
|
| 6 |
"mask_token": "[MASK]",
|
| 7 |
-
"model_max_length":
|
| 8 |
"pad_token": "[PAD]",
|
| 9 |
"sep_token": "[SEP]",
|
| 10 |
"strip_accents": null,
|
|
|
|
| 1 |
{
|
| 2 |
"backend": "tokenizers",
|
| 3 |
"cls_token": "[CLS]",
|
| 4 |
+
"do_lower_case": false,
|
| 5 |
"is_local": true,
|
| 6 |
"mask_token": "[MASK]",
|
| 7 |
+
"model_max_length": 1000000000000000019884624838656,
|
| 8 |
"pad_token": "[PAD]",
|
| 9 |
"sep_token": "[SEP]",
|
| 10 |
"strip_accents": null,
|