Instructions to use tunib/electra-ko-small with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tunib/electra-ko-small with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForPreTraining tokenizer = AutoTokenizer.from_pretrained("tunib/electra-ko-small") model = AutoModelForPreTraining.from_pretrained("tunib/electra-ko-small") - Notebooks
- Google Colab
- Kaggle
Upload tokenizer_config.json
Browse files- tokenizer_config.json +4 -0
tokenizer_config.json
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"do_lower_case": false,
|
| 3 |
+
"model_max_length": 512
|
| 4 |
+
}
|