Instructions to use zai-org/GLM-5.2-FP8 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use zai-org/GLM-5.2-FP8 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="zai-org/GLM-5.2-FP8") 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-FP8") model = AutoModelForCausalLM.from_pretrained("zai-org/GLM-5.2-FP8", 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]:])) - Inference
- HuggingChat
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use zai-org/GLM-5.2-FP8 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-FP8" # 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-FP8", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/zai-org/GLM-5.2-FP8
- SGLang
How to use zai-org/GLM-5.2-FP8 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-FP8" \ --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-FP8", "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-FP8" \ --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-FP8", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use zai-org/GLM-5.2-FP8 with Docker Model Runner:
docker model run hf.co/zai-org/GLM-5.2-FP8
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-00030-of-00141.safetensors +3 -0
- model-00032-of-00141.safetensors +3 -0
- model-00033-of-00141.safetensors +3 -0
- model-00034-of-00141.safetensors +3 -0
- model-00035-of-00141.safetensors +3 -0
- model-00036-of-00141.safetensors +3 -0
- model-00037-of-00141.safetensors +3 -0
- model-00038-of-00141.safetensors +3 -0
- model-00039-of-00141.safetensors +3 -0
- model-00040-of-00141.safetensors +3 -0
- model-00041-of-00141.safetensors +3 -0
- model-00042-of-00141.safetensors +3 -0
- model-00043-of-00141.safetensors +3 -0
- model-00044-of-00141.safetensors +3 -0
- model-00045-of-00141.safetensors +3 -0
- model-00046-of-00141.safetensors +3 -0
- model-00047-of-00141.safetensors +3 -0
- model-00048-of-00141.safetensors +3 -0
- model-00049-of-00141.safetensors +3 -0
- model-00050-of-00141.safetensors +3 -0
- model-00051-of-00141.safetensors +3 -0
- model-00052-of-00141.safetensors +3 -0
- model-00053-of-00141.safetensors +3 -0
- model-00054-of-00141.safetensors +3 -0
- model-00055-of-00141.safetensors +3 -0
- model-00056-of-00141.safetensors +3 -0
- model-00057-of-00141.safetensors +3 -0
- model-00058-of-00141.safetensors +3 -0
- model-00059-of-00141.safetensors +3 -0
- model-00060-of-00141.safetensors +3 -0
- model-00061-of-00141.safetensors +3 -0
- model-00062-of-00141.safetensors +3 -0
- model-00063-of-00141.safetensors +3 -0
- model-00064-of-00141.safetensors +3 -0
- model-00065-of-00141.safetensors +3 -0
- model-00066-of-00141.safetensors +3 -0
- model-00067-of-00141.safetensors +3 -0
- model-00068-of-00141.safetensors +3 -0
- model-00069-of-00141.safetensors +3 -0
- model-00070-of-00141.safetensors +3 -0
- model-00071-of-00141.safetensors +3 -0
- model-00072-of-00141.safetensors +3 -0
- model-00073-of-00141.safetensors +3 -0
- model-00074-of-00141.safetensors +3 -0
- model-00075-of-00141.safetensors +3 -0
- model-00076-of-00141.safetensors +3 -0
- model-00077-of-00141.safetensors +3 -0
- model-00078-of-00141.safetensors +3 -0
- model-00079-of-00141.safetensors +3 -0
- model-00080-of-00141.safetensors +3 -0
model-00030-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:128b570a6fb59ae7b153f0da4cf713b1087aa89c6977a376fd359b72086256f2
|
| 3 |
+
size 5361736512
|
model-00032-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aa6396111a23f21191ab964d456e039562aee26415c193eee66818a65e371157
|
| 3 |
+
size 5361736376
|
model-00033-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eea8bf4e723abc1a409fbd3fcf3cd3cd26eb76d7684a5a5c288019bea102c9c1
|
| 3 |
+
size 5363339440
|
model-00034-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:140be56abe6eb707904e920186acde09f6f68a2516a05de8c0cddf74d31794b3
|
| 3 |
+
size 5361736240
|
model-00035-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0409d47af586afbf624ce3719cf045931dbb2077a0cbc09a49a2eeb1b86ece86
|
| 3 |
+
size 5366353976
|
model-00036-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:85a859f10feb4c501e884e6b8ce55271b9e9ff3678a01ccd44c098acc1a44dd0
|
| 3 |
+
size 5366353488
|
model-00037-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:94482035358945bdb4e22d4de84229db613f9e1130ee54c7b8eb8dd5183639b5
|
| 3 |
+
size 5361736696
|
model-00038-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6b90a5d73bdd88fca82b3f7e173143d4d47a7e7c70d13b00ea2fae5d7ccb9dfc
|
| 3 |
+
size 5366353304
|
model-00039-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1dd05deff86bb3522953f76d38a11886484609350d73e6271d1c96a06c69e6ea
|
| 3 |
+
size 5361735832
|
model-00040-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4ae0969cb9eb6afab66b747fe6a440fe053a9db97f0d51ed0786353a9cabda78
|
| 3 |
+
size 5366353016
|
model-00041-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d1cf4c756326aae74b455b8af67a1b01f7aba179b00c8c745dd88d5ea6168a9c
|
| 3 |
+
size 5361736552
|
model-00042-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ec7f6d4e9ed6914ac23f56479df90591f83ab19eb694d6d890f1a4c9b5bfcbfc
|
| 3 |
+
size 5363339264
|
model-00043-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:14c66c8e7eedb3b9a8d380e6b07addc61a7b8fbda5161279bf2b2ebb7ae3869c
|
| 3 |
+
size 5361736416
|
model-00044-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f31755fee2c07bc621792319725228669d409d1e1c707308bd05feab58e750c8
|
| 3 |
+
size 5366353776
|
model-00045-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:69a3594b6db9febf8dfdb4dc155bac18ba655190db277bce5180691b17d58c21
|
| 3 |
+
size 5361736280
|
model-00046-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d7b3154d582e7306adaed0713dcc3508685fc8bd50c3365cc870c392aa2e6b15
|
| 3 |
+
size 5366353920
|
model-00047-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:20f1cf9bb3a90515918175e326df1a6c480e66c3141ff90774b9250f27d48b48
|
| 3 |
+
size 5366353496
|
model-00048-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2a26a2037565fe1364434ef6fd2639dc5b6f3123675c4d2a4483c1be85976354
|
| 3 |
+
size 5361736696
|
model-00049-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bf8a05ce48a22e35ff6876fc1368d0be31d52e468d3ab642e3f0c2a3f7adeaee
|
| 3 |
+
size 5363339104
|
model-00050-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:049791de5529ba8dd70045ff1060698d8c83a8bf56e4e1b393f3fe92c7649c4f
|
| 3 |
+
size 5361736696
|
model-00051-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c9420d6bc9a067ec65702e96b27c9efd0f43a4a5a5e22c54fe236c54034a1ea4
|
| 3 |
+
size 5366353512
|
model-00052-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:df24a331f857d3075af89c144c53648ebe61ad2ec3a82c46fb817951cbeea060
|
| 3 |
+
size 5361736584
|
model-00053-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2b20034a6014f1bf0db65ad451fc4cb91a735485fb640b3cb797c57118daf034
|
| 3 |
+
size 5366353608
|
model-00054-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b5c0bea9e984db2b1e5b5701562fea7849b92965deb3b8578901e4131d4ed928
|
| 3 |
+
size 5361736448
|
model-00055-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fa20a21a419ff1db10af4fa771d0c25b78b2ddae4ea9430aa870d832fea97f7d
|
| 3 |
+
size 5366353744
|
model-00056-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e5d4fc5325045ad9d13a688dbfd47d6b35157f77ba02d27dff0ca2c7a88903d3
|
| 3 |
+
size 5361736312
|
model-00057-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5080ad8b5434acb2664ae5db6dd3599baac135d9a6ca5b72cb78802f0ae56947
|
| 3 |
+
size 5363339496
|
model-00058-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:da916f8b9675e44edf42fc95a703b9cc7b9de4cad29de29d96d2050a7f962984
|
| 3 |
+
size 5357950744
|
model-00059-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3ec7a997bd5c8b9850242b2c670b956f983be6fb6d28db48d142e99e2c872275
|
| 3 |
+
size 5357552376
|
model-00060-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0ae31db7855f1b2b21c83e2796ba54d8063d1df5709040b24263f364e7e36534
|
| 3 |
+
size 5366352776
|
model-00061-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1afc36868dbaf7a1d5dc168f6b2cf3daf01eb58b11496555eef6812141c382a8
|
| 3 |
+
size 5361736696
|
model-00062-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:838b4dd1c5e74c1261886744265035c31d47f3a6ceaee8c584b1fc98747b2215
|
| 3 |
+
size 5366353504
|
model-00063-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8cf38b6b099a6a25b7eda78db45a0c39018c8b5cb1e519fd97fdab363203382d
|
| 3 |
+
size 5361736624
|
model-00064-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:40b02df8f891833c0771d2380fe6861407dca9015f877eaa4f1cf0aa807e9dad
|
| 3 |
+
size 5366353576
|
model-00065-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5bf6be418b153473bf1cbc49799c7db1e43e3c99cb08fe266a37ed163ea35bf8
|
| 3 |
+
size 5361736488
|
model-00066-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2551734ccee29b56a69395ed23ccfb53d7373c450157eb92e4811eb6ec4b53e4
|
| 3 |
+
size 5363339320
|
model-00067-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:655efe116a9ac66ca5d88e88747d0c937e719583dc71f14913be33e98da06261
|
| 3 |
+
size 5361736360
|
model-00068-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:112e330b035db93ef751095aad3a6d5d1c7f76ae892ccaa4af380e3ebb8d7c09
|
| 3 |
+
size 5366353848
|
model-00069-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7f80b3f5a14f92829d770a9e7beb4640b7dd2d45624f8e15284bf1bd7dbbd2c3
|
| 3 |
+
size 5361736224
|
model-00070-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7c076f1de1b5cbb7f8186b58539511e1d566257f8324dc4fcd5b6b3a1fb9ce19
|
| 3 |
+
size 5366353992
|
model-00071-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e267072e38435dc452280ba713d82c04f9943f831e9517481b587ca4377212c8
|
| 3 |
+
size 5366353488
|
model-00072-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5845408ff27a7af4fb8c2fe653be3d1d23402f3777ee78fce3d79ee35967e746
|
| 3 |
+
size 5361736696
|
model-00073-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6d6cd64c977e58e117462e28eff6abb7cd245bf098780664425d99fb3a4604f8
|
| 3 |
+
size 5363339112
|
model-00074-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c1f8b037db3e6a31cdcf8319a7929dca754f067e09d3b3c99794ab4053e87fac
|
| 3 |
+
size 5361736672
|
model-00075-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2a96a5f9a1aa9bfd9f02ade16ae15113f94a9a086a8c1bb0210f938c1b6db8d1
|
| 3 |
+
size 5366353528
|
model-00076-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5b6c0998e8ad25aa5e274b357370999e061bfb051489433c315fcd8e433968a5
|
| 3 |
+
size 5361736528
|
model-00077-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0b82a3b26a5021dcdc6e24b47eee9163403d81f96eb3572df17b9b4cd99661d2
|
| 3 |
+
size 5366353672
|
model-00078-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d3d5ff52321da5791b26f2dc9ec35a648b628af06bd711550fc7ef92e6fadd41
|
| 3 |
+
size 5361736392
|
model-00079-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b0726d8326e31cc084eefcabcf18cbbf81b9d69c3ee1d51ab250db3a88406b81
|
| 3 |
+
size 5366353168
|
model-00080-of-00141.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3b7b166d35edb91e3fec39668036d8007b3ba600a3f53f7adf86717d4d83f151
|
| 3 |
+
size 5361735408
|