commit c557768c987704ce90aff06b756d1166edf6f59d Author: ModelHub XC Date: Fri Aug 28 05:58:12 2026 +0800 初始化项目,由ModelHub XC社区提供模型 Model: LGAI-EXAONE/EXAONE-4.0-1.2B Source: Original Platform diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..f6b1f32 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,36 @@ +*.7z filter=lfs diff=lfs merge=lfs -text +*.arrow filter=lfs diff=lfs merge=lfs -text +*.bin filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.ckpt filter=lfs diff=lfs merge=lfs -text +*.ftz filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.h5 filter=lfs diff=lfs merge=lfs -text +*.joblib filter=lfs diff=lfs merge=lfs -text +*.lfs.* filter=lfs diff=lfs merge=lfs -text +*.mlmodel filter=lfs diff=lfs merge=lfs -text +*.model filter=lfs diff=lfs merge=lfs -text +*.msgpack filter=lfs diff=lfs merge=lfs -text +*.npy filter=lfs diff=lfs merge=lfs -text +*.npz filter=lfs diff=lfs merge=lfs -text +*.onnx filter=lfs diff=lfs merge=lfs -text +*.ot filter=lfs diff=lfs merge=lfs -text +*.parquet filter=lfs diff=lfs merge=lfs -text +*.pb filter=lfs diff=lfs merge=lfs -text +*.pickle filter=lfs diff=lfs merge=lfs -text +*.pkl filter=lfs diff=lfs merge=lfs -text +*.pt filter=lfs diff=lfs merge=lfs -text +*.pth filter=lfs diff=lfs merge=lfs -text +*.rar filter=lfs diff=lfs merge=lfs -text +*.safetensors filter=lfs diff=lfs merge=lfs -text +saved_model/**/* filter=lfs diff=lfs merge=lfs -text +*.tar.* filter=lfs diff=lfs merge=lfs -text +*.tar filter=lfs diff=lfs merge=lfs -text +*.tflite filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.wasm filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text +*tfevents* filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..047008b --- /dev/null +++ b/LICENSE @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c1762fb4bd94c8f17e114c5caa567e0948e1da7d02b79b55e99be9616e0f9e3 +size 13288 diff --git a/README.md b/README.md new file mode 100644 index 0000000..27864b6 --- /dev/null +++ b/README.md @@ -0,0 +1,1178 @@ +--- +license: other +license_name: exaone +license_link: LICENSE +language: +- en +- ko +- es +tags: +- lg-ai +- exaone +- exaone-4.0 +pipeline_tag: text-generation +library_name: transformers +--- + +

+ +🎉 License Updated! We are pleased to announce our more flexible licensing terms 🤗 +
✈️ Try on FriendliAI (licensed under commercial purposes) +

📢 EXAONE 4.0 is officially supported by HuggingFace transformers! Please check out the guide below +
+ +# EXAONE-4.0-1.2B + +## Introduction + +We introduce **EXAONE 4.0**, which integrates a **Non-reasoning mode** and **Reasoning mode** to achieve both the excellent usability of [EXAONE 3.5](https://github.com/LG-AI-EXAONE/EXAONE-3.5) and the advanced reasoning abilities of [EXAONE Deep](https://github.com/LG-AI-EXAONE/EXAONE-Deep). To pave the way for the agentic AI era, EXAONE 4.0 incorporates essential features such as agentic tool use, and its multilingual capabilities are extended +to support Spanish in addition to English and Korean. + +The EXAONE 4.0 model series consists of two sizes: a mid-size **32B** model optimized for high performance, and a small-size **1.2B** model designed for on-device applications. + +In the EXAONE 4.0 architecture, we apply new architectural changes compared to previous EXAONE models as below: + +1. **Hybrid Attention**: For the 32B model, we adopt hybrid attention scheme, which combines *Local attention (sliding window attention)* with *Global attention (full attention)* in a 3:1 ratio. We do not use RoPE (Rotary Positional Embedding) for global attention for better global context understanding. +2. **QK-Reorder-Norm**: We reorder the LayerNorm position from the traditional Pre-LN scheme by applying LayerNorm directly to the attention and MLP outputs, and we add RMS normalization right after the Q and K projection. It helps yield better performance on downstream tasks despite consuming more computation. + +For more details, please refer to our [technical report](https://arxiv.org/abs/2507.11407), [HuggingFace paper](https://huggingface.co/papers/2507.11407), [blog](https://www.lgresearch.ai/blog/view?seq=576), and [GitHub](https://github.com/LG-AI-EXAONE/EXAONE-4.0). + + +### Model Configuration + +- Number of Parameters (without embeddings): 1.07B +- Number of Layers: 30 +- Number of Attention Heads: GQA with 32-heads and 8-KV heads +- Vocab Size: 102,400 +- Context Length: 65,536 tokens + + +## Quickstart + +You should install the transformers library with version >= `4.54.0`. + +### Non-reasoning mode + +For general use, you can use the EXAONE 4.0 models with the following example: + +```python +from transformers import AutoModelForCausalLM, AutoTokenizer + +model_name = "LGAI-EXAONE/EXAONE-4.0-1.2B" + +model = AutoModelForCausalLM.from_pretrained( + model_name, + torch_dtype="bfloat16", + device_map="auto" +) +tokenizer = AutoTokenizer.from_pretrained(model_name) + +# choose your prompt +prompt = "Explain how wonderful you are" +prompt = "Explica lo increíble que eres" +prompt = "너가 얼마나 대단한지 설명해 봐" + +messages = [ + {"role": "user", "content": prompt} +] +input_ids = tokenizer.apply_chat_template( + messages, + tokenize=True, + add_generation_prompt=True, + return_tensors="pt" +) + +output = model.generate( + input_ids.to(model.device), + max_new_tokens=128, + do_sample=False, +) +print(tokenizer.decode(output[0])) +``` + +### Reasoning mode + +The EXAONE 4.0 models have reasoning capabilities for handling complex problems. You can activate reasoning mode by using the `enable_thinking=True` argument with the tokenizer, which opens a reasoning block that starts with `` tag without closing it. + +```python +messages = [ + {"role": "user", "content": "Which one is bigger, 3.12 vs 3.9?"} +] +input_ids = tokenizer.apply_chat_template( + messages, + tokenize=True, + add_generation_prompt=True, + return_tensors="pt", + enable_thinking=True, +) + +output = model.generate( + input_ids.to(model.device), + max_new_tokens=128, + do_sample=True, + temperature=0.6, + top_p=0.95 +) +print(tokenizer.decode(output[0])) +``` + +> [!IMPORTANT] +> The model generation with reasoning mode can be affected sensitively by sampling parameters, so please refer to the [Usage Guideline](#usage-guideline) for better quality. + +### Agentic tool use + +The EXAONE 4.0 models can be used as agents with their tool calling capabilities. You can provide tool schemas to the model for effective tool calling. + +```python +import random + +def roll_dice(max_num: int): + return random.randint(1, max_num) + +tools = [ + { + "type": "function", + "function": { + "name": "roll_dice", + "description": "Roll a dice with the number 1 to N. User can select the number N.", + "parameters": { + "type": "object", + "required": ["max_num"], + "properties": { + "max_num": { + "type": "int", + "description": "Max number of the dice" + } + } + } + } + } +] + +messages = [ + {"role": "user", "content": "Roll D6 dice twice!"} +] +input_ids = tokenizer.apply_chat_template( + messages, + tokenize=True, + add_generation_prompt=True, + return_tensors="pt", + tools=tools, +) + +output = model.generate( + input_ids.to(model.device), + max_new_tokens=1024, + do_sample=True, + temperature=0.6, + top_p=0.95, +) +print(tokenizer.decode(output[0])) +``` + + +## Deployment + +### TensorRT-LLM + +TensorRT-LLM officially supports EXAONE 4.0 models in the latest commits. Before it is released, you need to clone the TensorRT-LLM repository to build from source. + +```bash +git clone https://github.com/NVIDIA/TensorRT-LLM.git +``` + +After cloning the repository, you need to build the source for installation. Please refer to [the official documentation](https://nvidia.github.io/TensorRT-LLM/installation/build-from-source-linux.html) for a guide to build the TensorRT-LLM environment. + +You can run the TensorRT-LLM server by following steps: + +1. Write extra configuration YAML file + ```yaml + # extra_llm_api_config.yaml + kv_cache_config: + enable_block_reuse: false + ``` + +2. Run server with the configuration + ```bash + trtllm-serve serve LGAI-EXAONE/EXAONE-4.0-1.2B --backend pytorch --extra_llm_api_options extra_llm_api_config.yaml + ``` + +For more details, please refer to [the documentation](https://github.com/NVIDIA/TensorRT-LLM/tree/main/examples/models/core/exaone) of EXAONE from TensorRT-LLM. + +### vLLM + +vLLM officially supports EXAONE 4.0 models in the version of `0.10.0`. You can run the vLLM server by following command: + +```bash +vllm serve LGAI-EXAONE/EXAONE-4.0-1.2B --enable-auto-tool-choice --tool-call-parser hermes --reasoning-parser deepseek_r1 +``` + +For more details, please refer to [the vLLM documentation](https://docs.vllm.ai/en/stable/). + +> [!NOTE] +> Other inference engines including `sglang` don't support the EXAONE 4.0 officially now. We will update as soon as these libraries are updated. + + +## Performance + +The following tables show the evaluation results of each model, with reasoning and non-reasoning mode. The evaluation details can be found in the [technical report](https://arxiv.org/abs/2507.11407). + +- ✅ denotes the model has a hybrid reasoning capability, evaluated by selecting reasoning / non-reasoning on the purpose. +- To assess Korean **practical** and **professional** knowledge, we adopt both the [KMMLU-Redux](https://huggingface.co/datasets/LGAI-EXAONE/KMMLU-Redux) and [KMMLU-Pro](https://huggingface.co/datasets/LGAI-EXAONE/KMMLU-Pro) benchmarks. Both datasets are publicly released! + + +### 32B Reasoning Mode + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EXAONE 4.0 32B Phi 4 reasoning-plusMagistral Small-2506Qwen 3 32B Qwen 3 235B DeepSeek R1-0528
Model Size32.0B14.7B23.6B32.8B235B671B
Hybrid Reasoning
World Knowledge
MMLU-Redux92.390.886.890.992.793.4
MMLU-Pro81.876.073.480.083.085.0
GPQA-Diamond75.468.968.268.471.181.0
Math/Coding
AIME 202585.378.062.872.981.587.5
HMMT Feb 202572.953.643.550.462.579.4
LiveCodeBench v572.651.755.865.770.775.2
LiveCodeBench v666.747.147.460.158.970.3
Instruction Following
IFEval83.784.937.985.083.480.8
Multi-IF (EN)73.556.127.473.473.472.0
Agentic Tool Use
BFCL-v363.9N/A40.470.370.864.7
Tau-Bench (Airline)51.5N/A38.534.537.553.5
Tau-Bench (Retail)62.8N/A10.255.258.363.9
Multilinguality
KMMLU-Pro67.755.851.561.468.171.7
KMMLU-Redux72.762.754.667.574.577.0
KSM87.679.871.982.886.286.7
MMMLU (ES)85.684.368.982.886.788.2
MATH500 (ES)95.894.283.594.395.196.0
+ +### 32B Non-Reasoning Mode + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EXAONE 4.0 32B Phi 4Mistral-Small-2506Gemma3 27BQwen3 32B Qwen3 235B Llama-4-MaverickDeepSeek V3-0324
Model Size32.0B14.7B24.0B27.4B32.8B235B402B671B
Hybrid Reasoning
World Knowledge
MMLU-Redux89.888.385.985.085.789.292.392.3
MMLU-Pro77.670.469.167.574.477.480.581.2
GPQA-Diamond63.756.146.142.454.662.969.868.4
Math/Coding
AIME 202535.917.830.223.820.224.718.050.0
HMMT Feb 202521.84.016.910.39.811.97.329.2
LiveCodeBench v543.324.625.827.531.335.343.446.7
LiveCodeBench v643.127.426.929.728.031.432.744.0
Instruction Following
IFEval84.863.077.882.683.283.285.481.2
Multi-IF (EN)71.647.763.272.171.972.577.968.3
Long Context
HELMET58.3N/A61.958.354.563.313.7N/A
RULER88.2N/A71.866.085.690.62.9N/A
LongBench v148.1N/A51.551.544.245.334.7N/A
Agentic Tool Use
BFCL-v365.2N/A57.7N/A63.068.052.963.8
Tau-Bench (Airline)25.5N/A36.1N/A16.027.038.040.5
Tau-Bench (Retail)55.9N/A35.5N/A47.656.56.568.5
Multilinguality
KMMLU-Pro60.044.851.050.758.364.468.867.3
KMMLU-Redux64.850.153.653.364.471.776.972.2
KSM59.829.135.536.141.346.640.663.5
Ko-LongBench76.9N/A55.472.073.974.665.6N/A
MMMLU (ES)80.681.278.478.782.183.786.986.7
MATH500 (ES)87.378.283.486.884.787.278.789.2
WMT24++ (ES)90.789.392.293.191.492.992.794.3
+ +### 1.2B Reasoning Mode + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EXAONE 4.0 1.2B EXAONE Deep 2.4BQwen 3 0.6B Qwen 3 1.7B SmolLM 3 3B
Model Size1.28B2.41B596M1.72B3.08B
Hybrid Reasoning
World Knowledge
MMLU-Redux71.568.955.673.974.8
MMLU-Pro59.356.438.357.757.8
GPQA-Diamond52.054.327.940.141.7
Math/Coding
AIME 202545.247.915.136.836.7
HMMT Feb 202534.027.37.021.826.0
LiveCodeBench v544.647.212.333.227.6
LiveCodeBench v645.343.116.429.929.1
Instruction Following
IFEval67.871.059.272.571.2
Multi-IF (EN)53.954.537.553.547.5
Agentic Tool Use
BFCL-v352.9N/A46.456.637.1
Tau-Bench (Airline)20.5N/A22.031.037.0
Tau-Bench (Retail)28.1N/A3.36.55.4
Multilinguality
KMMLU-Pro42.724.621.638.330.5
KMMLU-Redux46.925.024.538.033.7
KSM60.660.922.852.949.7
MMMLU (ES)62.451.448.864.564.7
MATH500 (ES)88.884.570.687.987.5
+ +### 1.2B Non-Reasoning Mode + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EXAONE 4.0 1.2B Qwen 3 0.6B Gemma 3 1BQwen 3 1.7B SmolLM 3 3B
Model Size1.28B596M1.00B1.72B3.08B
Hybrid Reasoning
World Knowledge
MMLU-Redux66.944.640.963.465.0
MMLU-Pro52.026.614.743.743.6
GPQA-Diamond40.122.919.228.635.7
Math/Coding
AIME 202523.52.62.19.89.3
HMMT Feb 202513.01.01.55.14.7
LiveCodeBench v526.43.61.811.611.4
LiveCodeBench v630.16.92.316.620.6
Instruction Following
IFEval74.754.580.268.276.7
Multi-IF (EN)62.137.532.551.051.9
Long Context
HELMET41.221.1N/A33.838.6
RULER77.455.1N/A65.966.3
LongBench v136.932.4N/A41.939.9
Agentic Tool Use
BFCL-v355.744.1N/A52.247.3
Tau-Bench (Airline)10.031.5N/A13.538.0
Tau-Bench (Retail)21.75.7N/A4.66.7
Multilinguality
KMMLU-Pro37.524.69.729.527.6
KMMLU-Redux40.422.819.429.826.4
KSM26.30.122.816.316.1
Ko-LongBench69.816.4N/A57.115.7
MMMLU (ES)54.639.535.954.355.1
MATH500 (ES)71.238.541.266.062.4
WMT24++ (ES)65.958.276.976.784.0
+ + + +## Usage Guideline + +> [!IMPORTANT] +> To achieve the expected performance, we recommend using the following configurations: +> +> - For non-reasoning mode, we recommend using a lower temperature value such as `temperature<0.6` for better performance. +> - For reasoning mode (using `` block), we recommend using `temperature=0.6` and `top_p=0.95`. +> - If you suffer from the model degeneration, we recommend using `presence_penalty=1.5`. +> - For Korean general conversation with 1.2B model, we suggest to use `temperature=0.1` to avoid code switching. + + +## Limitation + +The EXAONE language model has certain limitations and may occasionally generate inappropriate responses. The language model generates responses based on the output probability of tokens, and it is determined during learning from training data. While we have made every effort to exclude personal, harmful, and biased information from the training data, some problematic content may still be included, potentially leading to undesirable responses. Please note that the text generated by EXAONE language model does not reflect the views of LG AI Research. + +- Inappropriate answers may be generated, which contain personal, harmful or other inappropriate information. +- Biased responses may be generated, which are associated with age, gender, race, and so on. +- The generated responses rely heavily on statistics from the training data, which can result in the generation of +semantically or syntactically incorrect sentences. +- Since the model does not reflect the latest information, the responses may be false or contradictory. + +LG AI Research strives to reduce potential risks that may arise from EXAONE language models. Users are not allowed +to engage in any malicious activities (e.g., keying in illegal information) that may induce the creation of inappropriate +outputs violating LG AI's ethical principles when using EXAONE language models. + + +## License + +The model is licensed under [EXAONE AI Model License Agreement 1.2 - NC](./LICENSE) + +> [!NOTE] +> The main difference from the older version is as below: +> - We removed **the claim of model output ownership** from the license. +> - We restrict the model use **against the development of models that compete with EXAONE**. +> - We allow the model to be used for **educational purposes**, not just research. + + +## Citation + +``` +@article{exaone-4.0, + title={EXAONE 4.0: Unified Large Language Models Integrating Non-reasoning and Reasoning Modes}, + author={{LG AI Research}}, + journal={arXiv preprint arXiv:2507.11407}, + year={2025} +} +``` + + +## Contact + +LG AI Research Technical Support: contact_us@lgresearch.ai diff --git a/assets/EXAONE_Symbol+BI_3d.png b/assets/EXAONE_Symbol+BI_3d.png new file mode 100644 index 0000000..65dd84c --- /dev/null +++ b/assets/EXAONE_Symbol+BI_3d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c473c63768e9303c02a4f968fd2e7d41df3f669fedc6a7b51c4398cfcd7f23e4 +size 249084 diff --git a/chat_template.jinja b/chat_template.jinja new file mode 100644 index 0000000..4c4a278 --- /dev/null +++ b/chat_template.jinja @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de64119ec8394ec3619221283a05fc8019c9a319cbdf2a471fe1ee8c36119616 +size 5487 diff --git a/config.json b/config.json new file mode 100644 index 0000000..0720057 --- /dev/null +++ b/config.json @@ -0,0 +1,67 @@ +{ + "architectures": [ + "Exaone4ForCausalLM" + ], + "attention_dropout": 0.0, + "bos_token_id": 1, + "eos_token_id": 361, + "head_dim": 64, + "hidden_act": "silu", + "hidden_size": 2048, + "initializer_range": 0.02, + "intermediate_size": 4096, + "layer_types": [ + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention" + ], + "max_position_embeddings": 65536, + "model_type": "exaone4", + "num_attention_heads": 32, + "num_hidden_layers": 30, + "num_key_value_heads": 8, + "pad_token_id": 0, + "rms_norm_eps": 1e-05, + "rope_scaling": { + "factor": 16.0, + "high_freq_factor": 4.0, + "low_freq_factor": 1.0, + "original_max_position_embeddings": 8192, + "rope_type": "llama3" + }, + "rope_theta": 1000000.0, + "sliding_window": null, + "sliding_window_pattern": null, + "tie_word_embeddings": true, + "torch_dtype": "bfloat16", + "transformers_version": "4.54.0", + "use_cache": true, + "vocab_size": 102400 +} diff --git a/configuration.json b/configuration.json new file mode 100644 index 0000000..bbeeda1 --- /dev/null +++ b/configuration.json @@ -0,0 +1 @@ +{"framework": "pytorch", "task": "text-generation", "allow_remote": true} \ No newline at end of file diff --git a/generation_config.json b/generation_config.json new file mode 100644 index 0000000..f99c7ec --- /dev/null +++ b/generation_config.json @@ -0,0 +1,7 @@ +{ + "_from_model_config": true, + "bos_token_id": 1, + "eos_token_id": 361, + "pad_token_id": 0, + "transformers_version": "4.54.0" +} diff --git a/merges.txt b/merges.txt new file mode 100644 index 0000000..8750eb7 --- /dev/null +++ b/merges.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cec041befc96a8eac947c36940412fa22412458824e822d9c5d60f82b0906970 +size 1219196 diff --git a/model.safetensors b/model.safetensors new file mode 100644 index 0000000..d5ac9d9 --- /dev/null +++ b/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa02ceaa9abd917c7421a05e05a02dba7e3f23008e72270a7e766d44fc8b168c +size 2558821288 diff --git a/special_tokens_map.json b/special_tokens_map.json new file mode 100644 index 0000000..8d6e438 --- /dev/null +++ b/special_tokens_map.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b91ce1519418fce1756efb80de1459069887df7b73a6b6bf08da6cd62ce62f37 +size 6704 diff --git a/tokenizer.json b/tokenizer.json new file mode 100644 index 0000000..788d721 --- /dev/null +++ b/tokenizer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:523b110391fc95d5c90ee3eaa05d65d21da1ef25b5766254307aceda9eb24a5b +size 7909232 diff --git a/tokenizer_config.json b/tokenizer_config.json new file mode 100644 index 0000000..754fccf --- /dev/null +++ b/tokenizer_config.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:541bbf1dcafbe5e26b015eacdb785a2758e99f9a15e3b7fd548866311e62eda7 +size 70315 diff --git a/vocab.json b/vocab.json new file mode 100644 index 0000000..16bd738 --- /dev/null +++ b/vocab.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2044b7b1c5109cf181ac11967b8617d67b48ca571fbc5ebff996be75f9d64b2 +size 1934190