Instructions to use bbaaaa/myfork with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use bbaaaa/myfork with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="bbaaaa/myfork")# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("bbaaaa/myfork") model = AutoModel.from_pretrained("bbaaaa/myfork") - Notebooks
- Google Colab
- Kaggle
Update config.json
Browse files- config.json +1 -1
config.json
CHANGED
|
@@ -40,5 +40,5 @@
|
|
| 40 |
"pad_token_id": 1,
|
| 41 |
"scale_embedding": false,
|
| 42 |
"static_position_embeddings": false,
|
| 43 |
-
"vocab_size":
|
| 44 |
}
|
|
|
|
| 40 |
"pad_token_id": 1,
|
| 41 |
"scale_embedding": false,
|
| 42 |
"static_position_embeddings": false,
|
| 43 |
+
"vocab_size": 50265
|
| 44 |
}
|