Instructions to use jeniya/BERTOverflow with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use jeniya/BERTOverflow with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="jeniya/BERTOverflow")# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("jeniya/BERTOverflow") model = AutoModel.from_pretrained("jeniya/BERTOverflow") - Notebooks
- Google Colab
- Kaggle
Commit ·
212cd3e
1
Parent(s): ab98935
max_len should be 512 in tokenizer config
Browse files- tokenizer_config.json +1 -1
tokenizer_config.json
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
{"do_lower_case": false}
|
|
|
|
| 1 |
+
{"do_lower_case": false, "max_len": 512}
|