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-00017-of-00282.safetensors +3 -0
- model-00018-of-00282.safetensors +3 -0
- model-00019-of-00282.safetensors +3 -0
- model-00020-of-00282.safetensors +3 -0
- model-00021-of-00282.safetensors +3 -0
- model-00022-of-00282.safetensors +3 -0
- model-00023-of-00282.safetensors +3 -0
- model-00025-of-00282.safetensors +3 -0
- model-00026-of-00282.safetensors +3 -0
- model-00027-of-00282.safetensors +3 -0
- model-00028-of-00282.safetensors +3 -0
- model-00029-of-00282.safetensors +3 -0
- model-00030-of-00282.safetensors +3 -0
- model-00032-of-00282.safetensors +3 -0
- model-00033-of-00282.safetensors +3 -0
- model-00034-of-00282.safetensors +3 -0
- model-00035-of-00282.safetensors +3 -0
- model-00036-of-00282.safetensors +3 -0
- model-00037-of-00282.safetensors +3 -0
- model-00038-of-00282.safetensors +3 -0
- model-00039-of-00282.safetensors +3 -0
- model-00040-of-00282.safetensors +3 -0
- model-00041-of-00282.safetensors +3 -0
- model-00042-of-00282.safetensors +3 -0
- model-00043-of-00282.safetensors +3 -0
- model-00044-of-00282.safetensors +3 -0
- model-00045-of-00282.safetensors +3 -0
- model-00046-of-00282.safetensors +3 -0
- model-00047-of-00282.safetensors +3 -0
- model-00048-of-00282.safetensors +3 -0
- model-00049-of-00282.safetensors +3 -0
- model-00050-of-00282.safetensors +3 -0
- model-00051-of-00282.safetensors +3 -0
- model-00052-of-00282.safetensors +3 -0
- model-00053-of-00282.safetensors +3 -0
- model-00054-of-00282.safetensors +3 -0
- model-00055-of-00282.safetensors +3 -0
- model-00056-of-00282.safetensors +3 -0
- model-00057-of-00282.safetensors +3 -0
- model-00058-of-00282.safetensors +3 -0
- model-00059-of-00282.safetensors +3 -0
- model-00060-of-00282.safetensors +3 -0
- model-00061-of-00282.safetensors +3 -0
- model-00062-of-00282.safetensors +3 -0
- model-00063-of-00282.safetensors +3 -0
- model-00064-of-00282.safetensors +3 -0
- model-00065-of-00282.safetensors +3 -0
- model-00066-of-00282.safetensors +3 -0
- model-00067-of-00282.safetensors +3 -0
- model-00068-of-00282.safetensors +3 -0
model-00017-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5f4bdb0a9cc4bf038705a034734212a9185f0853c06d5a6142b0b3f72720a27d
|
| 3 |
+
size 5360347320
|
model-00018-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1fea4352bbe2a046bfbfb9abbf5eb765c731299f291e8cdd57727c64330dcc9c
|
| 3 |
+
size 5360347312
|
model-00019-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:30e6a82321012b751a20d8d4b0ec7789fbd0f7d9793363c3aca1cfb3bac63dd2
|
| 3 |
+
size 5360347152
|
model-00020-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2a0c14209e0e265b74560da40960bcebc851ee68c3448c66e23ab474205e61f9
|
| 3 |
+
size 5359985408
|
model-00021-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8d938250b91052108ed2eb412269968a321aa33781120079ab3178f9db441c0a
|
| 3 |
+
size 5360347320
|
model-00022-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b23391d705ced93248aee64102135073c3f06f26ea32ebc32fbbd48348b0b9bb
|
| 3 |
+
size 5360347288
|
model-00023-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:de0d99516f2784543e6a2c549965e7082546f39ef10add5f881f6e09111badae
|
| 3 |
+
size 5360347112
|
model-00025-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9b2dd5f87ab021b5646e3fd76ac93bc92483e1c4f518acf9158c1ec2de5f95a8
|
| 3 |
+
size 5360347320
|
model-00026-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e6c1e51ea49e1ba15100da8dda71ee2643a56ea658cfad244cf4d7ea890618a9
|
| 3 |
+
size 5360347232
|
model-00027-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0d420c6b292f345c2f584ab3fccdc9be60f96de30e8beae7249b0ff52d80c610
|
| 3 |
+
size 5366406856
|
model-00028-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4847b68a168e928e9a77ae9e9ad8478773618d55e4879bcdeb8466fb440022a6
|
| 3 |
+
size 5360347320
|
model-00029-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:64087e925924da3c8ac95bd50348dd0308b5f710dc47b79542a293f288849bcc
|
| 3 |
+
size 5360347320
|
model-00030-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bfd33908d0bf7c36e602d8eece93f146878b3298bfe4ec1b1cb29b0a4ec8f2c9
|
| 3 |
+
size 5360347160
|
model-00032-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:87863a9a6f05c76d083145a77463e84c3868787a7bf4f2fcb1ef30d2dfec9e61
|
| 3 |
+
size 5360347320
|
model-00033-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:45dd4f6733c1bb4fb6aea8a4ee35301f5fe55b9809690f51e87558e4151eb7d2
|
| 3 |
+
size 5360347304
|
model-00034-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6d9f46cfdc634f6ffe0391fa781aeeafbaf23acd830bb0985ececf493d4dbc57
|
| 3 |
+
size 5360347112
|
model-00035-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bde40fe925bdee14397ed505ceb2a9f69c45f2439cee7019599c1b0dfaf53158
|
| 3 |
+
size 5359985464
|
model-00036-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:24d6eb21ea6edfb239c196de287d526c339998721524aaa150102ddce2a5738a
|
| 3 |
+
size 5360347320
|
model-00037-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:08673e260d26e835d4bcddb655f1cf4f8cc1600b06260a86ac92217beaee63c2
|
| 3 |
+
size 5360347240
|
model-00038-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3eb356ec94ec4112d3b0a7faaf2b3dc62eb0d958696713b5283376d4461bcc4d
|
| 3 |
+
size 5362896104
|
model-00039-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3cfceae2a0d6638ad38091c7388c64b1abc5605f7b01362fdb3e0693fb18d7d2
|
| 3 |
+
size 5360347312
|
model-00040-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2718c2467b41bd999c66bc9ba710a5477413ad89997ce00f86ab094e28c157f0
|
| 3 |
+
size 5360347320
|
model-00041-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5b487ae66099fc34d92fdcbfb094fd4586c3ca65f620c27e2ccfbbb53544280d
|
| 3 |
+
size 5360347200
|
model-00042-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0e82fb6a23dac095364e89e0b6eb4dc9a24c8419dd3a33644e31ea92e7d2db0d
|
| 3 |
+
size 5366406888
|
model-00043-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8132bfcd7af3d325d68368880f34693fbfef371d613c93e6326c00f33abef751
|
| 3 |
+
size 5360347320
|
model-00044-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:83a40255e2242ef6d1a4b2886b9fa7912d654df34edf171b1bda9f5c07702acd
|
| 3 |
+
size 5360347320
|
model-00045-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:066a74dabf6308aed03d6cc9df40aec42e8ed5c6f931abfac023f991a8151b72
|
| 3 |
+
size 5360347136
|
model-00046-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bd4c423a396ea0f23b6ff778a416f08434220d13801f510e2dffb3e6477bad7a
|
| 3 |
+
size 5366406952
|
model-00047-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:70e7110f076eff4bfbcc210f215df3e775aac5eee3bdd4a2418b2da46ee818b6
|
| 3 |
+
size 5360347312
|
model-00048-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:11ce9d973d541e2f388953707632552b1823022243479af55b54864a5c6bd31e
|
| 3 |
+
size 5360347280
|
model-00049-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4f3893af797ba70404dd8a581d37fa1647f5960207a4526c04a16814b4d4e040
|
| 3 |
+
size 5242528688
|
model-00050-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e3d9e5639b128b2b4c3a8b3dccbf4b65390429308696458da6daba3c9b56a90f
|
| 3 |
+
size 5351974184
|
model-00051-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:33b67324dc357b4c1520594730cadf5e9017fd44192698b6a7018ef9c4fcb4d5
|
| 3 |
+
size 5360347312
|
model-00052-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a10af8bdee4002f30683f53472142c239be36438132067763ec57e2906d3d775
|
| 3 |
+
size 5360347224
|
model-00053-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:06fd23b3ea5b8bacfc9156b82976d737ddc8a02d2f277bbd1ab8c4219bf968c7
|
| 3 |
+
size 5366406872
|
model-00054-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f3d5014d504a896d4de1a6e7fb3304d2ee8fd085dee68292c6118aa964772415
|
| 3 |
+
size 5360347320
|
model-00055-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e4f9cb3602919a27beed4e981b3f48d7b6afb6167438d25445eaf74dae3da855
|
| 3 |
+
size 5360347312
|
model-00056-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6561316847740c439fe4a874b708ed8760d3627b48b06bf156556f57b215c9d0
|
| 3 |
+
size 5360347152
|
model-00057-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2f417d9e77bab9de2d4594bce5f5d0f1c6461f09ded2513f2b691f0eb062725d
|
| 3 |
+
size 5366406936
|
model-00058-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5abfe62064d53ec58f17f8669131aa10299ce58d73920cdf9a9fba54f91ee713
|
| 3 |
+
size 5360347320
|
model-00059-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5b365975161aa20b02de485b7702508fb5845abd203eeeb6452d404d741aaf13
|
| 3 |
+
size 5360347288
|
model-00060-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d1b5faf07543b4adab398b1ce3055dcda709ca9a7f706f432b8d110947f224e2
|
| 3 |
+
size 5360347112
|
model-00061-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1951c644d4661a7a12e3ce6e562b766f1ff843304ebacf10c3f07a275f9b9532
|
| 3 |
+
size 5366407008
|
model-00062-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9f52cdca3fe1667e91efedd62ca302392859a6d9065f21a7c31418d8395f4561
|
| 3 |
+
size 5360347320
|
model-00063-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:81c121aed46edeb617b4914439163e336f952bac5e3b7f40084d8097c62ecd39
|
| 3 |
+
size 5360347224
|
model-00064-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:197917ad1f97fb2a4490f2993e6f109f02fbbc21f2d52fcd1329bb0ac7782e5b
|
| 3 |
+
size 5359985328
|
model-00065-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b21964a9952409d2131ba2b077b381ae343b1ca4b3f2ef5b14eb5029910d9c7f
|
| 3 |
+
size 5360347320
|
model-00066-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3959787d4fda47f6129133d0ffebfaa144899a6d5fbfa2a0168233c4d24d15e7
|
| 3 |
+
size 5360347312
|
model-00067-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6551db7c22baf06558e3fb84ea0b62e8ad1ddaaa68659bb8da85fe76b06e7d8d
|
| 3 |
+
size 5360347160
|
model-00068-of-00282.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:70b55097b967324aeb90b6bd84c6ceed6cac8f315f24e37227dde79e2cd88905
|
| 3 |
+
size 5366406928
|