Text Generation
Transformers
Safetensors
English
Chinese
glm5_next
image-text-to-text
conversational
Eval Results
fp8
Instructions to use zai-org/GLM-5.3-Flash with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use zai-org/GLM-5.3-Flash with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="zai-org/GLM-5.3-Flash") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("zai-org/GLM-5.3-Flash") model = AutoModelForMultimodalLM.from_pretrained("zai-org/GLM-5.3-Flash", device_map="auto") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = processor.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(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Inference
- HuggingChat
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use zai-org/GLM-5.3-Flash with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "zai-org/GLM-5.3-Flash" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "zai-org/GLM-5.3-Flash", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/zai-org/GLM-5.3-Flash
- SGLang
How to use zai-org/GLM-5.3-Flash 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 "zai-org/GLM-5.3-Flash" \ --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": "zai-org/GLM-5.3-Flash", "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 "zai-org/GLM-5.3-Flash" \ --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": "zai-org/GLM-5.3-Flash", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use zai-org/GLM-5.3-Flash with Docker Model Runner:
docker model run hf.co/zai-org/GLM-5.3-Flash
Add files using upload-large-folder tool
Browse files- .ms_upload_cache +1 -0
- model-00002-of-00062.safetensors +2 -2
- model-00003-of-00062.safetensors +2 -2
- model-00004-of-00062.safetensors +2 -2
- model-00005-of-00062.safetensors +2 -2
- model-00007-of-00062.safetensors +2 -2
- model-00008-of-00062.safetensors +2 -2
- model-00009-of-00062.safetensors +2 -2
- model-00010-of-00062.safetensors +2 -2
- model-00012-of-00062.safetensors +2 -2
- model-00013-of-00062.safetensors +2 -2
- model-00014-of-00062.safetensors +2 -2
- model-00016-of-00062.safetensors +2 -2
- model-00017-of-00062.safetensors +2 -2
- model-00018-of-00062.safetensors +2 -2
- model-00019-of-00062.safetensors +2 -2
- model-00020-of-00062.safetensors +2 -2
- model-00021-of-00062.safetensors +2 -2
- model-00022-of-00062.safetensors +2 -2
- model-00023-of-00062.safetensors +2 -2
- model-00024-of-00062.safetensors +2 -2
- model-00026-of-00062.safetensors +2 -2
- model-00027-of-00062.safetensors +2 -2
- model-00028-of-00062.safetensors +2 -2
- model-00030-of-00062.safetensors +2 -2
- model-00031-of-00062.safetensors +2 -2
- model-00032-of-00062.safetensors +2 -2
- model-00034-of-00062.safetensors +2 -2
- model-00037-of-00062.safetensors +2 -2
- model-00038-of-00062.safetensors +2 -2
- model-00040-of-00062.safetensors +2 -2
- model-00041-of-00062.safetensors +2 -2
- model-00042-of-00062.safetensors +2 -2
- model-00045-of-00062.safetensors +2 -2
- model-00046-of-00062.safetensors +2 -2
- model-00047-of-00062.safetensors +2 -2
- model-00048-of-00062.safetensors +2 -2
- model-00049-of-00062.safetensors +2 -2
- model-00050-of-00062.safetensors +2 -2
- model-00051-of-00062.safetensors +2 -2
- model-00052-of-00062.safetensors +2 -2
- model-00053-of-00062.safetensors +2 -2
- model-00055-of-00062.safetensors +2 -2
- model-00056-of-00062.safetensors +2 -2
- model-00057-of-00062.safetensors +2 -2
- model-00059-of-00062.safetensors +2 -2
- model-00061-of-00062.safetensors +2 -2
- model-00062-of-00062.safetensors +2 -2
- model.safetensors.index.json +0 -0
.ms_upload_cache
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"version": 3, "repo_id": "ZhipuAI/GLM-5.3-Flash", "files": {"chat_template.jinja|1787740514.0|10644": {"hash": "34d5ee66b12fa6446cdae131c352b8f68cd85369e0e6fda115583805fada3891", "size": 10644}, "config.json|1787740514.0|68794": {"hash": "00c3ce40c92fae7f248c72a8fff3163e74bda2fe0a82d190806ad2284bcddde8", "size": 68794}, "generation_config.json|1787740514.0|194": {"hash": "230c30609ecbbb9e6583bedde8e7bdda0c6eb8fe5fad0eaeb3d1b293d751cb4f", "size": 194}, "model-00003-of-00062.safetensors|1787739040.0|5363448800": {"hash": "e9806d89bb028a51393414a5817d104ca811def3459fcff82dc37616adcdafe2", "size": 5363448800}, "model-00006-of-00062.safetensors|1787739068.0|5361790216": {"hash": "20e2cd306152f5de1e1d4ffa474e90a466d1b2ffd01c21a4182a99e263e9eaa0", "size": 5361790216}, "model-00004-of-00062.safetensors|1787739049.0|5364323736": {"hash": "faaeaf32f8b9219a3a13437bf3b5436928d39d619a82c9c375c21f995c1607c0", "size": 5364323736}, "model-00007-of-00062.safetensors|1787739078.0|5364323968": {"hash": "00b63fd168956e79228899d1a0663f045f13e6d6466c01ef93cc067aad7803da", "size": 5364323968}, "model-00005-of-00062.safetensors|1787739058.0|5363896872": {"hash": "d2124352d6cb564db9144310fff9df6ca73c7d848514ce54d0ce627bc92d4b8f", "size": 5363896872}, "model-00008-of-00062.safetensors|1787739087.0|5364323752": {"hash": "6605c4a52d76579574edfe3b7084c46d91ded3f33b678be25ee36ef724175d87", "size": 5364323752}, "model-00002-of-00062.safetensors|1787739031.0|5320647024": {"hash": "d05313aa3d972efc49076d3b7fc4ed3e827cd5648fce6fd83e8e6e4caed68a1b", "size": 5320647024}, "model-00001-of-00062.safetensors|1787739025.0|5365306688": {"hash": "fd5202d28efdd01b47557c3f59111de3b4c4c375b2709c167b9b61834663c7da", "size": 5365306688}}}
|
model-00002-of-00062.safetensors
CHANGED
|
@@ -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:328225cabdc9b1595bc8bd0062cdc99fb23872eb5bbf7ec5db62f2be8abeaeeb
|
| 3 |
+
size 5320647824
|
model-00003-of-00062.safetensors
CHANGED
|
@@ -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:e0fc42c270a8f8a2c1a38c91b06c28ca0646721f8d4768fa09ed97faca918300
|
| 3 |
+
size 5363467432
|
model-00004-of-00062.safetensors
CHANGED
|
@@ -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:ea66d9139b41d1fa83d5da3d29ee66bc4bd594faa143bceaf7e014f584903d24
|
| 3 |
+
size 5364342296
|
model-00005-of-00062.safetensors
CHANGED
|
@@ -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:d1da1e65d621a46aacb41edb38b6a8efd085fa4cd8b1d8e37dc1452e9814d46f
|
| 3 |
+
size 5363915920
|
model-00007-of-00062.safetensors
CHANGED
|
@@ -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:82396e0f55ab6768568fe1292d37c295045363c27676067dcf92d9249af10216
|
| 3 |
+
size 5364342528
|
model-00008-of-00062.safetensors
CHANGED
|
@@ -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:91f5cb329f6d3c0648e9ed9e6018f0331e64e33424d6b7aaab2ca100aa820193
|
| 3 |
+
size 5364342304
|
model-00009-of-00062.safetensors
CHANGED
|
@@ -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:69cbb58b336f43eb8d2201adce20b8741b128b6450105e0cab7b2fffec8be9c4
|
| 3 |
+
size 5364169856
|
model-00010-of-00062.safetensors
CHANGED
|
@@ -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:db5ea14fed53c98c60c43d3326907c93386809690ee5b20c1d0e7052e798d54d
|
| 3 |
+
size 5361982080
|
model-00012-of-00062.safetensors
CHANGED
|
@@ -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:dc61a5684e5fae401ee1efb9be6f8f0673f27f48a02f9455caa7a448970bd3c4
|
| 3 |
+
size 5364342288
|
model-00013-of-00062.safetensors
CHANGED
|
@@ -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:bfecdc0fd8d936dacc740b660a609e779d6bb71d39a2daaa4bef886544a8aa97
|
| 3 |
+
size 5361809408
|
model-00014-of-00062.safetensors
CHANGED
|
@@ -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:bab323a2bb1774e63a8bbf19fc1dd1fa1c34e43d6c024133379c86cdbdfaf141
|
| 3 |
+
size 5364342504
|
model-00016-of-00062.safetensors
CHANGED
|
@@ -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:6cc97434dfac843692ccc3baf4a140d01a4e8dac88001bb0a656205eadf37828
|
| 3 |
+
size 5361809176
|
model-00017-of-00062.safetensors
CHANGED
|
@@ -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:530a4034da64dc4a94aae6ef2bafd40d4b498b324f6143a1fc60d548c356e407
|
| 3 |
+
size 5364084560
|
model-00018-of-00062.safetensors
CHANGED
|
@@ -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:035ee33c3279b45b6eb8894ec224d0edbf5a69f914b92879d85ababf8fc60a83
|
| 3 |
+
size 5364342304
|
model-00019-of-00062.safetensors
CHANGED
|
@@ -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:28b540f19710314c95ad625cf9377cdea3b650d52f9c34e4dbf35e27976745d7
|
| 3 |
+
size 5364342272
|
model-00020-of-00062.safetensors
CHANGED
|
@@ -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:67a86a8bedaa6d4672f75444fa353fb3435d2a1e3b9083f78d3421926d7ac3f2
|
| 3 |
+
size 5361809528
|
model-00021-of-00062.safetensors
CHANGED
|
@@ -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:48c8bbefadcf3d28ca6b27309959cc72e62db128e3e34cc74b6b0e25728e4128
|
| 3 |
+
size 5364342376
|
model-00022-of-00062.safetensors
CHANGED
|
@@ -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:3b0232707a753fa3d753772ef066998614bcd8ae6234d3648f0dee924ad8fcb6
|
| 3 |
+
size 5363915936
|
model-00023-of-00062.safetensors
CHANGED
|
@@ -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:1ea8f1bbc7e134c55b6ff91e52ff83acd3e72a199f6c762507872ab5dad7dded
|
| 3 |
+
size 5361809264
|
model-00024-of-00062.safetensors
CHANGED
|
@@ -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:4cda3a7dcfbfcebb73163f6b45e5b7886276ac3cfec1236045d070bea58afba0
|
| 3 |
+
size 5364342640
|
model-00026-of-00062.safetensors
CHANGED
|
@@ -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:29aa015bbd8d0d1bea6c14d7c4e8f1a1cf7f17713981fb94ec10764090c68d6b
|
| 3 |
+
size 5364342272
|
model-00027-of-00062.safetensors
CHANGED
|
@@ -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:fdafd6e7064525704e815090dd550f0928bc169e99df9b164e7c76a9b4e420d8
|
| 3 |
+
size 5361809560
|
model-00028-of-00062.safetensors
CHANGED
|
@@ -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:07089bdfe63c5807475f0a1fd379e31679ec9fdecd862d6374793fbdaca12a8b
|
| 3 |
+
size 5363915976
|
model-00030-of-00062.safetensors
CHANGED
|
@@ -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:a28adbc99919ee9941a37f5de23771f22746331e7254c0822646edb9a151eb73
|
| 3 |
+
size 5361809296
|
model-00031-of-00062.safetensors
CHANGED
|
@@ -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:e2f31cb37dcf8ca7000e82990f3af061a847f1086f79f207c7223fa090f04502
|
| 3 |
+
size 5364341544
|
model-00032-of-00062.safetensors
CHANGED
|
@@ -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:f33b53853ea5576b5aabd259bd9d933e6dbbaf65c511a8cdb328caab4349d8a9
|
| 3 |
+
size 5363915232
|
model-00034-of-00062.safetensors
CHANGED
|
@@ -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:451bb0368e52f65c765507aa7bec1b28575c33fd828d377b18b34f165e23f3f8
|
| 3 |
+
size 5361809552
|
model-00037-of-00062.safetensors
CHANGED
|
@@ -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:0e7c51bd69d86a51d23ed25095589e42e1fa804974bae4a17c819f805a366901
|
| 3 |
+
size 5361809288
|
model-00038-of-00062.safetensors
CHANGED
|
@@ -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:e903f70ca5e94734fcc9ff036531ae9c2abefb5f5105749659bba372d59ba125
|
| 3 |
+
size 5364342624
|
model-00040-of-00062.safetensors
CHANGED
|
@@ -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:6f7c05711e1d0bafcd1e7894876a2cf961d4b370243bca17625d2b1a0892ceb6
|
| 3 |
+
size 5363915912
|
model-00041-of-00062.safetensors
CHANGED
|
@@ -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:9ddfde38b0f0f2062350faecd733762f7abf4b4e6123dcdb7141135c60ad47a4
|
| 3 |
+
size 5361809552
|
model-00042-of-00062.safetensors
CHANGED
|
@@ -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:2b70ffbe9d8272770a164f950811d5675f18c98d9f35e49a43a897e342ff4c98
|
| 3 |
+
size 5364342368
|
model-00045-of-00062.safetensors
CHANGED
|
@@ -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:7f280939f4c8a5e0f78b78a3e9a9052b13910fb0016b294b9b3e294e9c34b054
|
| 3 |
+
size 5364342600
|
model-00046-of-00062.safetensors
CHANGED
|
@@ -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:9e748de0fd06f845a5d70f623ee720f55c1ce1954ef8a33331738d9e244493dc
|
| 3 |
+
size 5363915368
|
model-00047-of-00062.safetensors
CHANGED
|
@@ -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:ddf0691ca8aa43ecdcc6cc988946d43c82ad9a673bcb3b933223bf5b33be0ae1
|
| 3 |
+
size 5364341072
|
model-00048-of-00062.safetensors
CHANGED
|
@@ -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:85c51200985471ba83707cfa0841af3452d9f9f71496276d827f8df15f991cab
|
| 3 |
+
size 5361809576
|
model-00049-of-00062.safetensors
CHANGED
|
@@ -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:14ba26c9f6b0b859e114b65bd381f2bbcf5990f30fbbf371b51ef3f89839c173
|
| 3 |
+
size 5364342344
|
model-00050-of-00062.safetensors
CHANGED
|
@@ -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:7a00d5221b4131ba09f62c68af1fc8e9d53366a48a65e87ccdbd36ed5a7e2cb5
|
| 3 |
+
size 5364342312
|
model-00051-of-00062.safetensors
CHANGED
|
@@ -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:b3423a93d9d44f51ad231ae576a60cbdc2acd86364f6419e82a52878e40d7948
|
| 3 |
+
size 5361809336
|
model-00052-of-00062.safetensors
CHANGED
|
@@ -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:9162deb48ee6c35d372214757ba96327994082e5976f86168a7886cc112c23fc
|
| 3 |
+
size 5364342576
|
model-00053-of-00062.safetensors
CHANGED
|
@@ -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:2f5ecc0c3f969b8a4ba446a547062ca812a768397903f9d64074ae77c53fb22e
|
| 3 |
+
size 5363915936
|
model-00055-of-00062.safetensors
CHANGED
|
@@ -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:8d64c91ff600a93311c15cde18b62b9b3de239727295ad6bc4b5f6d6654cef8e
|
| 3 |
+
size 5361808304
|
model-00056-of-00062.safetensors
CHANGED
|
@@ -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:748dda91c9b697e596ebd7ef56244450c9f17c7de2b463d9de1d28b2572f3f51
|
| 3 |
+
size 5364341080
|
model-00057-of-00062.safetensors
CHANGED
|
@@ -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:e128c2da3d3e9d100662504703d545ada43783bb4c6f2870bd3a17169b0b8141
|
| 3 |
+
size 5364341048
|
model-00059-of-00062.safetensors
CHANGED
|
@@ -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:bc1731273adc088e2e7aa8b766a14efcbf2521790fe3f8416d3f11672e70c62f
|
| 3 |
+
size 5363914912
|
model-00061-of-00062.safetensors
CHANGED
|
@@ -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:4c29e5654cabbd19f4733f601aac9d4fadaafde6f8d03994eb173cba208cecec
|
| 3 |
+
size 5303993768
|
model-00062-of-00062.safetensors
CHANGED
|
@@ -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:d3087816db95f962a3a74c057b8398e1492458ecd99608f706a400f112a825c6
|
| 3 |
+
size 1261584968
|
model.safetensors.index.json
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|