Instructions to use Qwen/Qwen3-235B-A22B-GPTQ-Int4 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Qwen/Qwen3-235B-A22B-GPTQ-Int4 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Qwen/Qwen3-235B-A22B-GPTQ-Int4") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("Qwen/Qwen3-235B-A22B-GPTQ-Int4") model = AutoModelForCausalLM.from_pretrained("Qwen/Qwen3-235B-A22B-GPTQ-Int4", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Qwen/Qwen3-235B-A22B-GPTQ-Int4 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Qwen/Qwen3-235B-A22B-GPTQ-Int4" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Qwen/Qwen3-235B-A22B-GPTQ-Int4", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Qwen/Qwen3-235B-A22B-GPTQ-Int4
- SGLang
How to use Qwen/Qwen3-235B-A22B-GPTQ-Int4 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "Qwen/Qwen3-235B-A22B-GPTQ-Int4" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Qwen/Qwen3-235B-A22B-GPTQ-Int4", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "Qwen/Qwen3-235B-A22B-GPTQ-Int4" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Qwen/Qwen3-235B-A22B-GPTQ-Int4", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Qwen/Qwen3-235B-A22B-GPTQ-Int4 with Docker Model Runner:
docker model run hf.co/Qwen/Qwen3-235B-A22B-GPTQ-Int4
Merge branch 'main' of hf.co:Qwen/Qwen3-235B-A22B-GPTQ-Int4
Browse files- README.md +1 -1
- config.json +6 -14
- generation_config.json +5 -12
- model-00001-of-00005.safetensors +0 -3
- model-00005-of-00005.safetensors → model-00001-of-00032.safetensors +2 -2
- model-00002-of-00005.safetensors → model-00002-of-00032.safetensors +2 -2
- model-00003-of-00005.safetensors → model-00003-of-00032.safetensors +2 -2
- model-00004-of-00005.safetensors → model-00004-of-00032.safetensors +2 -2
- model-00005-of-00032.safetensors +3 -0
- model-00006-of-00032.safetensors +3 -0
- model-00007-of-00032.safetensors +3 -0
- model-00008-of-00032.safetensors +3 -0
- model-00009-of-00032.safetensors +3 -0
- model-00010-of-00032.safetensors +3 -0
- model-00011-of-00032.safetensors +3 -0
- model-00012-of-00032.safetensors +3 -0
- model-00013-of-00032.safetensors +3 -0
- model-00014-of-00032.safetensors +3 -0
- model-00015-of-00032.safetensors +3 -0
- model-00016-of-00032.safetensors +3 -0
- model-00017-of-00032.safetensors +3 -0
- model-00018-of-00032.safetensors +3 -0
- model-00019-of-00032.safetensors +3 -0
- model-00020-of-00032.safetensors +3 -0
- model-00021-of-00032.safetensors +3 -0
- model-00022-of-00032.safetensors +3 -0
- model-00023-of-00032.safetensors +3 -0
- model-00024-of-00032.safetensors +3 -0
- model-00025-of-00032.safetensors +3 -0
- model-00026-of-00032.safetensors +3 -0
- model-00027-of-00032.safetensors +3 -0
- model-00028-of-00032.safetensors +3 -0
- model-00029-of-00032.safetensors +3 -0
- model-00030-of-00032.safetensors +3 -0
- model-00031-of-00032.safetensors +3 -0
- model-00032-of-00032.safetensors +3 -0
- model.safetensors.index.json +1 -1
- tokenizer_config.json +1 -0
README.md
CHANGED
|
@@ -44,7 +44,7 @@ For more details, including benchmark evaluation, hardware requirements, and inf
|
|
| 44 |
> Currently, ``transformers`` has issues with multi-GPU inference for GPTQ quantized models. We recommend using SGLang or vLLM for deployment.
|
| 45 |
|
| 46 |
|
| 47 |
-
For deployment, you can use `sglang>=0.4.6.post1` or `vllm
|
| 48 |
- SGLang:
|
| 49 |
```shell
|
| 50 |
python -m sglang.launch_server --model-path Qwen/Qwen3-235B-A22B-GPTQ-Int4 --reasoning-parser qwen3 --tp 4
|
|
|
|
| 44 |
> Currently, ``transformers`` has issues with multi-GPU inference for GPTQ quantized models. We recommend using SGLang or vLLM for deployment.
|
| 45 |
|
| 46 |
|
| 47 |
+
For deployment, you can use `sglang>=0.4.6.post1` or `vllm==0.8.4` or to create an OpenAI-compatible API endpoint:
|
| 48 |
- SGLang:
|
| 49 |
```shell
|
| 50 |
python -m sglang.launch_server --model-path Qwen/Qwen3-235B-A22B-GPTQ-Int4 --reasoning-parser qwen3 --tp 4
|
config.json
CHANGED
|
@@ -27,23 +27,15 @@
|
|
| 27 |
"quantization_config": {
|
| 28 |
"bits": 4,
|
| 29 |
"checkpoint_format": "gptq",
|
|
|
|
| 30 |
"desc_act": false,
|
| 31 |
"group_size": 128,
|
| 32 |
-
"
|
| 33 |
-
"
|
| 34 |
-
"damp_auto_increment": 0.0025,
|
| 35 |
-
"damp_percent": 0.01,
|
| 36 |
-
"mse": 0.0,
|
| 37 |
-
"quantizer": [
|
| 38 |
-
"gptqmodel:2.2.0"
|
| 39 |
-
],
|
| 40 |
-
"static_groups": false,
|
| 41 |
-
"true_sequential": true,
|
| 42 |
-
"uri": "https://github.com/modelcloud/gptqmodel"
|
| 43 |
-
},
|
| 44 |
-
"pack_dtype": "int32",
|
| 45 |
"quant_method": "gptq",
|
| 46 |
-
"
|
|
|
|
|
|
|
| 47 |
},
|
| 48 |
"rms_norm_eps": 1e-06,
|
| 49 |
"rope_scaling": null,
|
|
|
|
| 27 |
"quantization_config": {
|
| 28 |
"bits": 4,
|
| 29 |
"checkpoint_format": "gptq",
|
| 30 |
+
"damp_percent": 0.01,
|
| 31 |
"desc_act": false,
|
| 32 |
"group_size": 128,
|
| 33 |
+
"model_file_base_name": null,
|
| 34 |
+
"model_name_or_path": null,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 35 |
"quant_method": "gptq",
|
| 36 |
+
"static_groups": false,
|
| 37 |
+
"sym": true,
|
| 38 |
+
"true_sequential": true
|
| 39 |
},
|
| 40 |
"rms_norm_eps": 1e-06,
|
| 41 |
"rope_scaling": null,
|
generation_config.json
CHANGED
|
@@ -1,13 +1,6 @@
|
|
| 1 |
{
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
],
|
| 8 |
-
"pad_token_id": 151643,
|
| 9 |
-
"temperature": 0.6,
|
| 10 |
-
"top_k": 20,
|
| 11 |
-
"top_p": 0.95,
|
| 12 |
-
"transformers_version": "4.51.0"
|
| 13 |
-
}
|
|
|
|
| 1 |
{
|
| 2 |
+
"_from_model_config": true,
|
| 3 |
+
"eos_token_id": 151645,
|
| 4 |
+
"pad_token_id": 151643,
|
| 5 |
+
"transformers_version": "4.51.3"
|
| 6 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
model-00001-of-00005.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:1cef7c90a889a0ddc6092800984d784467673a417dea06a7e7b0901c18bbe10c
|
| 3 |
-
size 30004176672
|
|
|
|
|
|
|
|
|
|
|
|
model-00005-of-00005.safetensors → model-00001-of-00032.safetensors
RENAMED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e31da9bc1725cb89fa1ceace52b06fcaf9ce4dd3a56e162ade4bf62dc6b3f1ed
|
| 3 |
+
size 3998000432
|
model-00002-of-00005.safetensors → model-00002-of-00032.safetensors
RENAMED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3df75d9069fbba562413edb4d456e4c09e8c07b4ad0a36135cb58b0be5d721f4
|
| 3 |
+
size 4000547568
|
model-00003-of-00005.safetensors → model-00003-of-00032.safetensors
RENAMED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7d7cb04f447b1104fcf49eedaa0b656bb13b70ba780d3b4678f1a70177ae15f4
|
| 3 |
+
size 4000537336
|
model-00004-of-00005.safetensors → model-00004-of-00032.safetensors
RENAMED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:61ef7766943e43164c6a92bc79dea9e318ed00f9e4c2fe7137a3536f732b5bd4
|
| 3 |
+
size 4000539432
|
model-00005-of-00032.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3b25c2698a5c0ff5130b4e9572d7d1f6847d46b5612d1bc6d76732c903a313e1
|
| 3 |
+
size 4000552368
|
model-00006-of-00032.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d5da86a06feb3a1810e84da6481542f724c32e85ce9238e3304c671a3827c44a
|
| 3 |
+
size 4000542136
|
model-00007-of-00032.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2c0babeaa9800cb7d24003f27b4b9bd50782efb6e1e6cc19dd29c4dd3a3de469
|
| 3 |
+
size 4000542128
|
model-00008-of-00032.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c677020129e3bed540e06fdc71ff0056b5185efb6e0967d5c9f758d493f8df8e
|
| 3 |
+
size 4000552368
|
model-00009-of-00032.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:94dc2ce10e56d7c46a72bf9fc5be6bb76b7ad7efed7b4e5692d977d30a4f43f0
|
| 3 |
+
size 4000542136
|
model-00010-of-00032.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:699e58086bf7465b4c1b42c3c1a9e915c8c8d42a50ff942345009421586f619a
|
| 3 |
+
size 4000542224
|
model-00011-of-00032.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b9dc3fe098f86e932cbc1cf67364db5023cc87b1009d0d925e6fd8951af6099d
|
| 3 |
+
size 4000552496
|
model-00012-of-00032.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2635504eef849688b2d97a730957f859ed9a997fc735e5d92713ada3e1a7ad28
|
| 3 |
+
size 3987427192
|
model-00013-of-00032.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2a469964ee0143a9fd2817a9ea710bad9498273049306e212776dc20bc0d1f6a
|
| 3 |
+
size 3999344896
|
model-00014-of-00032.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7c16aba7820e51ca33c0569fb170488802f400b245ab02ca421566ee5155e46b
|
| 3 |
+
size 4000542096
|
model-00015-of-00032.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c46d69af8333dd0d4fba8214e5872a65b5d428bc645ab2026a44384d7fd290e8
|
| 3 |
+
size 4000542128
|
model-00016-of-00032.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ab8f03db925b9af1563b7dcee7e8cc2cdd83adbd0b244d584b913ca49c43538b
|
| 3 |
+
size 4000552368
|
model-00017-of-00032.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:635631e51b554a2756590dbe158527a8ed995ab1edc0f203fd1c4d5cc5cf060a
|
| 3 |
+
size 4000542136
|
model-00018-of-00032.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1335e2fc6e0546d15d0859a1468a976cac475bd4f397388939ec96488f54da05
|
| 3 |
+
size 4000542128
|
model-00019-of-00032.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:46270693fd4ba48aa6f5a05746b70a746ead9e84a0ae13a0e763b4bbf420aab2
|
| 3 |
+
size 4000552368
|
model-00020-of-00032.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:02d7bf6837a35f631b976c191569997aa89d88e8bab18876101cf70b5b5ef2da
|
| 3 |
+
size 4000542136
|
model-00021-of-00032.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2bac214c217591ba97c33d5c37d0575feb26752094dcab88c3f1490cbfa7b90a
|
| 3 |
+
size 4000542128
|
model-00022-of-00032.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:46efe0f85a124d844cd5601e368c973c017bcb571db922aa3c20fadb75f39df7
|
| 3 |
+
size 4000552400
|
model-00023-of-00032.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:371ec11eec1b410c02a0c3a54383e88770713783db971069e848788b9cfaabec
|
| 3 |
+
size 4000542264
|
model-00024-of-00032.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a0a7bbe6b9637cdcb4c2f5e476ba8929f3cc5cd978ee380f2633314de7a2d58b
|
| 3 |
+
size 4000542256
|
model-00025-of-00032.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bb39cd2d5f249c7ad2c3f5b5e27ad8e9dd83b5e8fdbe8aefb9e0a1539d359fd9
|
| 3 |
+
size 3999361608
|
model-00026-of-00032.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:53bd114a4e9ffeb72330b1a44f9a96cbc181dc2cd880f23b72303b1949489f2a
|
| 3 |
+
size 4000542048
|
model-00027-of-00032.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d194433e3662f34a81102f0fa11a71862870e02414d3a20ff90d5add64f91c80
|
| 3 |
+
size 4000542128
|
model-00028-of-00032.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b257d596ab34e5cdd32bd259e55d2c7d53d7a8ce2bd5f436f40dcf82f26d6a1b
|
| 3 |
+
size 4000552368
|
model-00029-of-00032.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bb4ae0c6893b599e5b21a8d1db8f8a750603758a43adb8a2f9e0095d206502d6
|
| 3 |
+
size 4000542136
|
model-00030-of-00032.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e9c24c522a4a84eec494a5d46f152f9aa10232ad4f241b5c3b6486a17e04f243
|
| 3 |
+
size 4000542128
|
model-00031-of-00032.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3773b95a3594f2ede533d64564efe4908e2f874b6eda540a7c83265899b144ef
|
| 3 |
+
size 3305963560
|
model-00032-of-00032.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:28e42c8e703cca812a08af985b44d3bd34091327e263d1a2e78a361f8a6643e1
|
| 3 |
+
size 1244659840
|
model.safetensors.index.json
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 13211435
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:27fbdfeb4565eeb580455d7d3ab67261f9bfa9bd7a687511f64d409287b38aab
|
| 3 |
size 13211435
|
tokenizer_config.json
CHANGED
|
@@ -231,6 +231,7 @@
|
|
| 231 |
"clean_up_tokenization_spaces": false,
|
| 232 |
"eos_token": "<|im_end|>",
|
| 233 |
"errors": "replace",
|
|
|
|
| 234 |
"model_max_length": 131072,
|
| 235 |
"pad_token": "<|endoftext|>",
|
| 236 |
"split_special_tokens": false,
|
|
|
|
| 231 |
"clean_up_tokenization_spaces": false,
|
| 232 |
"eos_token": "<|im_end|>",
|
| 233 |
"errors": "replace",
|
| 234 |
+
"extra_special_tokens": {},
|
| 235 |
"model_max_length": 131072,
|
| 236 |
"pad_token": "<|endoftext|>",
|
| 237 |
"split_special_tokens": false,
|