Instructions to use zai-org/GLM-5.2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use zai-org/GLM-5.2 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="zai-org/GLM-5.2") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("zai-org/GLM-5.2") model = AutoModelForCausalLM.from_pretrained("zai-org/GLM-5.2") 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]:])) - Inference
- HuggingChat
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use zai-org/GLM-5.2 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.2" # 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.2", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/zai-org/GLM-5.2
- SGLang
How to use zai-org/GLM-5.2 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.2" \ --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.2", "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.2" \ --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.2", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use zai-org/GLM-5.2 with Docker Model Runner:
docker model run hf.co/zai-org/GLM-5.2
Add files using upload-large-folder tool
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- model-00093-of-00282.safetensors +3 -0
- model-00094-of-00282.safetensors +3 -0
- model-00096-of-00282.safetensors +3 -0
- model-00097-of-00282.safetensors +3 -0
- model-00098-of-00282.safetensors +3 -0
- model-00099-of-00282.safetensors +3 -0
- model-00100-of-00282.safetensors +3 -0
- model-00101-of-00282.safetensors +3 -0
- model-00102-of-00282.safetensors +3 -0
- model-00103-of-00282.safetensors +3 -0
- model-00104-of-00282.safetensors +3 -0
- model-00105-of-00282.safetensors +3 -0
- model-00106-of-00282.safetensors +3 -0
- model-00107-of-00282.safetensors +3 -0
- model-00108-of-00282.safetensors +3 -0
- model-00109-of-00282.safetensors +3 -0
- model-00110-of-00282.safetensors +3 -0
- model-00111-of-00282.safetensors +3 -0
- model-00112-of-00282.safetensors +3 -0
- model-00113-of-00282.safetensors +3 -0
- model-00114-of-00282.safetensors +3 -0
- model-00115-of-00282.safetensors +3 -0
- model-00116-of-00282.safetensors +3 -0
- model-00117-of-00282.safetensors +3 -0
- model-00118-of-00282.safetensors +3 -0
- model-00119-of-00282.safetensors +3 -0
- model-00120-of-00282.safetensors +3 -0
- model-00121-of-00282.safetensors +3 -0
- model-00122-of-00282.safetensors +3 -0
- model-00123-of-00282.safetensors +3 -0
- model-00124-of-00282.safetensors +3 -0
- model-00125-of-00282.safetensors +3 -0
- model-00126-of-00282.safetensors +3 -0
- model-00127-of-00282.safetensors +3 -0
- model-00128-of-00282.safetensors +3 -0
- model-00129-of-00282.safetensors +3 -0
- model-00130-of-00282.safetensors +3 -0
- model-00131-of-00282.safetensors +3 -0
- model-00132-of-00282.safetensors +3 -0
- model-00133-of-00282.safetensors +3 -0
- model-00134-of-00282.safetensors +3 -0
- model-00135-of-00282.safetensors +3 -0
- model-00136-of-00282.safetensors +3 -0
- model-00137-of-00282.safetensors +3 -0
- model-00138-of-00282.safetensors +3 -0
- model-00139-of-00282.safetensors +3 -0
- model-00140-of-00282.safetensors +3 -0
- model-00141-of-00282.safetensors +3 -0
- model-00142-of-00282.safetensors +3 -0
- model-00143-of-00282.safetensors +3 -0
model-00093-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:499f2e4c27f0912d1097a0f2d78eefb0f0a0f11fa3ffb480d90b04d3be8ace7c
|
| 3 |
+
size 5360347112
|
model-00094-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:79b562a54323e28ed46a6b482a4b512eac3c0dc26e7bbf505fe5c05abf0d895d
|
| 3 |
+
size 5366406968
|
model-00096-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8bb1e796769cecb7bde83c40104424c2de547c9750e9cfb2a06809dab84635b1
|
| 3 |
+
size 5360347256
|
model-00097-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1568c5c884419b0eca759b1095a1261054a1f4eb10bd8aaf8cf4fac8c37ea28e
|
| 3 |
+
size 5359985304
|
model-00098-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:44090c64101b668200d9af3801e022de7fdf1d63488d76a877be15d221c2fa4c
|
| 3 |
+
size 5360347320
|
model-00099-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:23c4beb7d05105c3083b1f112272a282aa6d80730311a1222fd14fdd399e9b21
|
| 3 |
+
size 5360347312
|
model-00100-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0c2937adf14d1a7c77f733fdb24944052ce9b354a4113a485df34159e369d7f3
|
| 3 |
+
size 5360347192
|
model-00101-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f4e1b81e3a000289aea7da6c2a441da3fb65cb325a3da517e7cb2718bd9369ed
|
| 3 |
+
size 5366406896
|
model-00102-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1762384f37eb5558888a5b9cbcec7e398c010a055205b63a11a2a18c9d81d4da
|
| 3 |
+
size 5360347320
|
model-00103-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7f6e66176760ed2ecf156321a70c64be9c1a41c3d65fe1286534d4b17c848c73
|
| 3 |
+
size 5360347312
|
model-00104-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8f260a6eabb836f500f978fd5656fd5b564ce891d06350cfa67e047f58f038d4
|
| 3 |
+
size 5360347120
|
model-00105-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e3286b9c96768fd576d5d900d4181c1eb61c440241f5d267c3647cdbbe68bb93
|
| 3 |
+
size 5366406968
|
model-00106-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:affc8bb531f7828d46ecdf5a506c7b4cfadf0ab165bea0128717c9eff42e64a8
|
| 3 |
+
size 5360347320
|
model-00107-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:000f09ebb2728cef7ba521279d6f57c832018cb4ba85876a89bec11995a2f0d1
|
| 3 |
+
size 5360347264
|
model-00108-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d201fa9064deea80a78282d315a5d124d35503e5b4b9b388daf4b2a9f092d855
|
| 3 |
+
size 5366406824
|
model-00109-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:091f5eab924b3ab7c81f49b0d39dd97ab7ae63259314063f1fe73915a861bfb6
|
| 3 |
+
size 5360347320
|
model-00110-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:547a62d3bfcc2d6c3b62fcbdc20f6bf8b6b3f53fd90837cf0a6cf94856f55a48
|
| 3 |
+
size 5360347320
|
model-00111-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:01be73111e97871344b208282f7e5a3fc1e5c9328b8eb80b9dfbebd7b92a30ef
|
| 3 |
+
size 5360347200
|
model-00112-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:07c4b6c43744d2aa477073dfe943e6e09c817b80939caab37574ce4b9db80636
|
| 3 |
+
size 5359985360
|
model-00113-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6009159425d3a68ffd49561c3113670ee8f6410a91235c3b7776d28ab2a56d8e
|
| 3 |
+
size 5360347320
|
model-00114-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4be2357456b96c3a298265af5cdfd4a9f9d66262e76278b602f8c6a685ace599
|
| 3 |
+
size 5360347320
|
model-00115-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b8428102af8091aa7e07413c25c99534f23b1b956c6a0a2a38945e8ac12eb159
|
| 3 |
+
size 5360347128
|
model-00116-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7a258692ee56355cd087da0b4c065f9c08408cd73facd188a7a504c9a07a6794
|
| 3 |
+
size 5366406816
|
model-00117-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:703e4dfbea787c84c26fbb6b0200378262cf2e2c5e48d563a7fcc9b10a75ee19
|
| 3 |
+
size 5360347104
|
model-00118-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fec6264b97ff493fea3d61a44b999da9e1af4202ded96a9929478ae4c2610b88
|
| 3 |
+
size 5360347064
|
model-00119-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:95a69af73c4d8bd4d5858defdc5c82294c1e01d67fe34b23adf48a4ee6c69242
|
| 3 |
+
size 5349617128
|
model-00120-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dd65aed8f96fa0013a528c9b8e5198bf9f8e6a6a6440259895b4d8e5e711b2ad
|
| 3 |
+
size 5351970840
|
model-00121-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4a45f5448357a4c4bfabb0023deb990f8b8875851eb9cbe94984bb19877d4fa1
|
| 3 |
+
size 5360347320
|
model-00122-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a8f5f0b4a23acdf8e82087b166ca72695ce9235418257536976163f5c449a6da
|
| 3 |
+
size 5360347208
|
model-00123-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7905bd43519c224d2daaca860dfb899107dc505a390231db0ab81d44f1b144b9
|
| 3 |
+
size 5366406880
|
model-00124-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b0851bcfc4c7a3489bf3a39b9502c062d4de27a8a93b7e998b6582eda941b46b
|
| 3 |
+
size 5360347320
|
model-00125-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4c1fbb5b6155bc31e9f759adfa0e0d854e38147f337423d6663f79fb3cb2c307
|
| 3 |
+
size 5360347320
|
model-00126-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0ee62157f37007541c3c9283cd60aca436cf099bb77fb321db2887e57e4aa783
|
| 3 |
+
size 5360347144
|
model-00127-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e3000c3fd969d4085fb95f4bfd31dc87a1acece675571672ff48538a0fb33e76
|
| 3 |
+
size 5366406944
|
model-00128-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bf964b04ac7d526c6f7f7aea109d7e6a02c251b1ac3325c2a2211dbb887f29c6
|
| 3 |
+
size 5360347312
|
model-00129-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:39e8b00bf5b67db615ae743e524e3fb31f5bf2fac5982477a8fc21c1d7b7b5ac
|
| 3 |
+
size 5360347288
|
model-00130-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a6fb3450a46de70c5f4982ce443140620764297064815bbecc935f96667763d5
|
| 3 |
+
size 5364164128
|
model-00131-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:40da20a12f1edbce6008ad6bbb9f0410ca43459f60bb0f0581120855f7733e22
|
| 3 |
+
size 5356168480
|
model-00132-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6bbf8472ad52ab37e2d05235c1c98efef9af33b2c99972492e098589bc9e7eaa
|
| 3 |
+
size 5360347312
|
model-00133-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bda0da5a9647424c5b82fca2103842f0314eb90dfceb564f94aab74573dd7ec3
|
| 3 |
+
size 5360347224
|
model-00134-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7ff2a20d15009f7298ff8fdb1dc104bb99ef9025c052d08156f660da9f3e63fe
|
| 3 |
+
size 5366406864
|
model-00135-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bf74f4996322058a60412e5104ad7d81a8b13db25ae0eab324203a7bcc056159
|
| 3 |
+
size 5360347320
|
model-00136-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:50829da469fb60957450ea50b7b58a2f324fef623280e1107c5f2fd5dd78534c
|
| 3 |
+
size 5360347312
|
model-00137-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ed3d9be1148e60ea14a63bfd7247847a067806e1abba50de9f43d92055158089
|
| 3 |
+
size 5360347152
|
model-00138-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e734040b11bbf1efaf897eb6db26193f5a6dcebe73d62cf0ce313b0f25bcdecc
|
| 3 |
+
size 5366406936
|
model-00139-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3142eb28664b9997258aebe022b66ae7346a6d24a5118d3b4e61ba08f17eb924
|
| 3 |
+
size 5360347320
|
model-00140-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:683a5c553907ed762d335abcedbc688810d4c4a1f97963760ec0be062da32963
|
| 3 |
+
size 5360347288
|
model-00141-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bd56b4dd67b3d3470d52c3f23f19febb97d48cf82366f0d87238d74388683f5b
|
| 3 |
+
size 5360347112
|
model-00142-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6077f10cab3d231ce4a2463626452c379279ed59786076454a90d9797cac24ad
|
| 3 |
+
size 5366407008
|
model-00143-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8dd10de271f9196037e92d46f27675596ce8499457706a623611b55fb0485d5e
|
| 3 |
+
size 5360347320
|