Text Generation
Transformers
Safetensors
glm_moe_dsa
compressed-tensors
llm-compressor
vllm
mxfp4
conversational
Eval Results
8-bit precision
Instructions to use RedHatAI/GLM-5.2-MXFP4xFP8_BLOCK with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use RedHatAI/GLM-5.2-MXFP4xFP8_BLOCK with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="RedHatAI/GLM-5.2-MXFP4xFP8_BLOCK") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("RedHatAI/GLM-5.2-MXFP4xFP8_BLOCK") model = AutoModelForCausalLM.from_pretrained("RedHatAI/GLM-5.2-MXFP4xFP8_BLOCK", 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 RedHatAI/GLM-5.2-MXFP4xFP8_BLOCK with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "RedHatAI/GLM-5.2-MXFP4xFP8_BLOCK" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "RedHatAI/GLM-5.2-MXFP4xFP8_BLOCK", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/RedHatAI/GLM-5.2-MXFP4xFP8_BLOCK
- SGLang
How to use RedHatAI/GLM-5.2-MXFP4xFP8_BLOCK 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 "RedHatAI/GLM-5.2-MXFP4xFP8_BLOCK" \ --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": "RedHatAI/GLM-5.2-MXFP4xFP8_BLOCK", "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 "RedHatAI/GLM-5.2-MXFP4xFP8_BLOCK" \ --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": "RedHatAI/GLM-5.2-MXFP4xFP8_BLOCK", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use RedHatAI/GLM-5.2-MXFP4xFP8_BLOCK with Docker Model Runner:
docker model run hf.co/RedHatAI/GLM-5.2-MXFP4xFP8_BLOCK
Upload folder using huggingface_hub
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- config.json +1 -1
- model-00002-of-00282.safetensors +2 -2
- model-00003-of-00282.safetensors +2 -2
- model-00004-of-00282.safetensors +2 -2
- model-00005-of-00282.safetensors +2 -2
- model-00006-of-00282.safetensors +2 -2
- model-00007-of-00282.safetensors +2 -2
- model-00008-of-00282.safetensors +2 -2
- model-00009-of-00282.safetensors +2 -2
- model-00010-of-00282.safetensors +2 -2
- model-00011-of-00282.safetensors +2 -2
- model-00012-of-00282.safetensors +2 -2
- model-00013-of-00282.safetensors +2 -2
- model-00014-of-00282.safetensors +2 -2
- model-00015-of-00282.safetensors +2 -2
- model-00016-of-00282.safetensors +2 -2
- model-00017-of-00282.safetensors +2 -2
- model-00018-of-00282.safetensors +2 -2
- model-00019-of-00282.safetensors +2 -2
- model-00020-of-00282.safetensors +2 -2
- model-00021-of-00282.safetensors +2 -2
- model-00022-of-00282.safetensors +2 -2
- model-00023-of-00282.safetensors +2 -2
- model-00024-of-00282.safetensors +2 -2
- model-00025-of-00282.safetensors +2 -2
- model-00026-of-00282.safetensors +2 -2
- model-00027-of-00282.safetensors +2 -2
- model-00028-of-00282.safetensors +2 -2
- model-00029-of-00282.safetensors +2 -2
- model-00030-of-00282.safetensors +2 -2
- model-00031-of-00282.safetensors +2 -2
- model-00032-of-00282.safetensors +2 -2
- model-00033-of-00282.safetensors +2 -2
- model-00034-of-00282.safetensors +2 -2
- model-00035-of-00282.safetensors +2 -2
- model-00036-of-00282.safetensors +2 -2
- model-00037-of-00282.safetensors +2 -2
- model-00038-of-00282.safetensors +2 -2
- model-00039-of-00282.safetensors +2 -2
- model-00040-of-00282.safetensors +2 -2
- model-00041-of-00282.safetensors +2 -2
- model-00042-of-00282.safetensors +2 -2
- model-00043-of-00282.safetensors +2 -2
- model-00044-of-00282.safetensors +2 -2
- model-00045-of-00282.safetensors +2 -2
- model-00046-of-00282.safetensors +2 -2
- model-00047-of-00282.safetensors +2 -2
- model-00048-of-00282.safetensors +2 -2
- model-00049-of-00282.safetensors +2 -2
- model-00050-of-00282.safetensors +2 -2
config.json
CHANGED
|
@@ -265,7 +265,7 @@
|
|
| 265 |
},
|
| 266 |
"output_activations": null,
|
| 267 |
"targets": [
|
| 268 |
-
"re:^model\\.layers\\.[3-
|
| 269 |
],
|
| 270 |
"weights": {
|
| 271 |
"actorder": null,
|
|
|
|
| 265 |
},
|
| 266 |
"output_activations": null,
|
| 267 |
"targets": [
|
| 268 |
+
"re:^model\\.layers\\.(?:[3-9]|[1-6][0-9]|7[0-8])\\..*mlp.*"
|
| 269 |
],
|
| 270 |
"weights": {
|
| 271 |
"actorder": null,
|
model-00002-of-00282.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:45fb5afaa6c0a8b3c584e326a18c0a16a5fc0664ee232a57c491c866be0321cc
|
| 3 |
+
size 1437406264
|
model-00003-of-00282.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:f12dc51cafd831c942b9c4e1f2dbf20f7767db64e772c89d223319fadb4b04f6
|
| 3 |
+
size 1423889888
|
model-00004-of-00282.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:8d17148c1980594476c4ec26662280afe203f687da2b2d3189f407a7811406ee
|
| 3 |
+
size 1423889672
|
model-00005-of-00282.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:a02f7ee07d227cb475f97509d52a54cddf056cf0ebf3d71bfde6a04adf2d1c56
|
| 3 |
+
size 1508089608
|
model-00006-of-00282.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:b5fc929ca08512d87485f99c25f09082707db03f1f2cfcdb044c895f042ccffc
|
| 3 |
+
size 1423889888
|
model-00007-of-00282.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:9b8a0b644ec8b315bed758da480a98966889c406af708263079929623faff4a3
|
| 3 |
+
size 1423889888
|
model-00008-of-00282.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:740328593022ac2eaa17508c77287361d1da81f727f157426dcf01fd94f72afc
|
| 3 |
+
size 1423889536
|
model-00009-of-00282.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:47bd0f0aba7e52c7784d676492cd605deb066267c0d7224e624a34d5cbc2963d
|
| 3 |
+
size 1505203952
|
model-00010-of-00282.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:9c7e58051a354a8b73ea18427db07977f8fd99e70a486babd7152447515d5bfa
|
| 3 |
+
size 1423889880
|
model-00011-of-00282.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:ece1008481af49144720ec966169311a88118f6aa383f12c3c2ed569a8e1693c
|
| 3 |
+
size 1423889832
|
model-00012-of-00282.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:7bb8cf6e1aafb2bbb922bfa9ff8d93685674d343caa4a7216869e1988c191036
|
| 3 |
+
size 1427050000
|
model-00013-of-00282.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:ed08f452c7f3768dc0e055878ca4fa3f3409b13ab5cf3078013bedae806c0c09
|
| 3 |
+
size 1502043528
|
model-00014-of-00282.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:d74f81d3ea2206715f77514b4fed04e93374e720788ab32c853e1c42f3e77687
|
| 3 |
+
size 1423889880
|
model-00015-of-00282.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:a1e8f02bc6e823b22167bfa3aaf5bba0f24769fc2ef6c1acd2f0760786769545
|
| 3 |
+
size 1423889696
|
model-00016-of-00282.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:bcda4466e496f7fe86927a2c779afe2a83c35c93bd73da2dc7a475e4c766168f
|
| 3 |
+
size 1505203792
|
model-00017-of-00282.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:50aedae48d524744a67972ac590faf305e7d54161705f9f016210a3c4a5b9c8e
|
| 3 |
+
size 1423889896
|
model-00018-of-00282.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:c86c6507a9a57d979ecbd7498a6948b332de8abc6a177ff3efb6246069ceb620
|
| 3 |
+
size 1423889880
|
model-00019-of-00282.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:39f85f789fa3ce191b7b483f062f4f5a7c7c540f2c8bcde9df3ff82560f2efc9
|
| 3 |
+
size 1423889560
|
model-00020-of-00282.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:cbd3e94467253101c50595a06a1d36065153a4df4ed5e98542e59e1aba581605
|
| 3 |
+
size 1508089728
|
model-00021-of-00282.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:82f7baed9721e282c843e5d9593e9bf0846b119956d9aaadd9b7b5e33bc48deb
|
| 3 |
+
size 1423889896
|
model-00022-of-00282.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:b3c13d973ce6374a1062f55d1272ab0a0bc571a47a039b9cdcb75815cd4db22d
|
| 3 |
+
size 1423889832
|
model-00023-of-00282.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:0a44544d7de4cd9499c4c8dcdd5a2b727ca6cdbc5f3a7135b08064a7daa94e91
|
| 3 |
+
size 1423889472
|
model-00024-of-00282.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:bc4713585114fa533662c17d70f80d9736fefe16c58069d3ff3680e6b56eef76
|
| 3 |
+
size 1505204064
|
model-00025-of-00282.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:9b849519d2b9920eadcd12e046e326da9839dc5078218ff5910349301bd824b1
|
| 3 |
+
size 1423889888
|
model-00026-of-00282.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:66aca93281b933d67fddc070983fe12c760db1b142bad89264efb77d8bb8b85e
|
| 3 |
+
size 1423889712
|
model-00027-of-00282.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:be86c823eb41d2bafd585ef9206c5feb3b7f5b7d85a6a3fbec2539c45efb81d1
|
| 3 |
+
size 1505203776
|
model-00028-of-00282.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:cc8f4f99d0994f572658af871d22ab4f9a12fa11728b474db1ada5c43cfdda22
|
| 3 |
+
size 1423889896
|
model-00029-of-00282.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:9e14a4ab6a6e914686755ea18baa6cf3226baef56bc7a6761480a25a941aed50
|
| 3 |
+
size 1423889888
|
model-00030-of-00282.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:f0252a264390035e729b65fba3bf1f27f101818067f4f7740b94f04e0f51f0a6
|
| 3 |
+
size 1423889576
|
model-00031-of-00282.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:178a02853f2bfc6c5bf7e34188afee94df212074015000aa3eaffeddb3faf49a
|
| 3 |
+
size 1505203912
|
model-00032-of-00282.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:ee3ecbdc3fcbc92b446fab17048740d711ec38d16162a91b9025c32469d18a70
|
| 3 |
+
size 1423889896
|
model-00033-of-00282.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:3f08cde8e493a6224800416c1f98c01d39703275f5c72372a592a52ad6564446
|
| 3 |
+
size 1423889856
|
model-00034-of-00282.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:35100e367b175cf84652172b309cc978ad00326b11c8786547f57502de3e69d4
|
| 3 |
+
size 1423889472
|
model-00035-of-00282.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:161091f75ddac2ab5e6837ca2c06ecdd835ef5e0b7f6ac48252c6defc4792c38
|
| 3 |
+
size 1508089840
|
model-00036-of-00282.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:f0cc1ea14b256068bc4312db3009abfaf750036b1c2e05435a017b4394a53d80
|
| 3 |
+
size 1423889888
|
model-00037-of-00282.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:5d884f61474a20ac69d6198a8ca9f0551f5c6299f30b4b1faafb7063fe01a8be
|
| 3 |
+
size 1423889728
|
model-00038-of-00282.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:08ec8be21d5192070901a873e3ed734d72f4e7a9e4e42dadb09a00aeadff3b73
|
| 3 |
+
size 1692448816
|
model-00039-of-00282.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:a450df38e23481f707366d0e1a7bf94ddf75c937dbf11c013e0b9215166433bb
|
| 3 |
+
size 1423889880
|
model-00040-of-00282.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:716ada2fc95c00de96b2f1b1ee9a4b86c2617495a046306a9f8a73aede3240c1
|
| 3 |
+
size 1423889888
|
model-00041-of-00282.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:4d2e6da7f7f49ea8da05cfad7f40d683b814fe22d1c3bf23d9741207b02ce9b3
|
| 3 |
+
size 1423889656
|
model-00042-of-00282.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:4e542d28c73e78a6fba6c563d99f821d5b1075576e8e0ed3b3a9910591911e89
|
| 3 |
+
size 1505203832
|
model-00043-of-00282.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:3cee1875b6073ee79a275b3edfd14f56692b5f1de24a7f03ac6f4ae10a9bf6fe
|
| 3 |
+
size 1423889888
|
model-00044-of-00282.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:a169094a2c8e84248c25b25eb6be5730a71e4ad2b912ad76092053a33c7b63bc
|
| 3 |
+
size 1423889888
|
model-00045-of-00282.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:fa1dc8b71ec7ad8b8649c3061abecb198ba32b447bf16a9788b631484be1347d
|
| 3 |
+
size 1423889520
|
model-00046-of-00282.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:d7c3966fb0341c58d8f0627f88fc6c9ab5d9ca3eab463a1469513a5c0cd4d24e
|
| 3 |
+
size 1505203968
|
model-00047-of-00282.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:3a09d3b103d083af3af4be94ee7546b218c8a63706ad48708d9a19fcac243b94
|
| 3 |
+
size 1423889880
|
model-00048-of-00282.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:cba5d86f48698d2760f4f44d0d90f2be6e47bb18f60ec227e626141e7315788a
|
| 3 |
+
size 1423889816
|
model-00049-of-00282.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:b5e88b465abb3aba8acd0fabba80a983bc55a617aece1c6b361f6dc5a4cab43b
|
| 3 |
+
size 1408048008
|
model-00050-of-00282.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:7d35135fd014fc0ada898380abb23bd66c13df8e1fbf3797e38031adedd157c7
|
| 3 |
+
size 1490506688
|