Text Generation
Transformers
Safetensors
glm_moe_dsa
vLLM
compressed-tensors
INT8
W8A16
conversational
Instructions to use QuantTrio/GLM-5.2-Int8 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use QuantTrio/GLM-5.2-Int8 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="QuantTrio/GLM-5.2-Int8") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("QuantTrio/GLM-5.2-Int8") model = AutoModelForCausalLM.from_pretrained("QuantTrio/GLM-5.2-Int8") 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 QuantTrio/GLM-5.2-Int8 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "QuantTrio/GLM-5.2-Int8" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "QuantTrio/GLM-5.2-Int8", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/QuantTrio/GLM-5.2-Int8
- SGLang
How to use QuantTrio/GLM-5.2-Int8 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 "QuantTrio/GLM-5.2-Int8" \ --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": "QuantTrio/GLM-5.2-Int8", "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 "QuantTrio/GLM-5.2-Int8" \ --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": "QuantTrio/GLM-5.2-Int8", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use QuantTrio/GLM-5.2-Int8 with Docker Model Runner:
docker model run hf.co/QuantTrio/GLM-5.2-Int8
Add files using upload-large-folder tool
Browse files- model-00012-of-00233.safetensors +3 -0
- model-00013-of-00233.safetensors +3 -0
- model-00032-of-00233.safetensors +3 -0
- model-00033-of-00233.safetensors +3 -0
- model-00040-of-00233.safetensors +3 -0
- model-00052-of-00233.safetensors +3 -0
- model-00053-of-00233.safetensors +3 -0
- model-00064-of-00233.safetensors +3 -0
- model-00065-of-00233.safetensors +3 -0
- model-00068-of-00233.safetensors +3 -0
- model-00070-of-00233.safetensors +3 -0
- model-00071-of-00233.safetensors +3 -0
- model-00072-of-00233.safetensors +3 -0
- model-00073-of-00233.safetensors +3 -0
- model-00080-of-00233.safetensors +3 -0
- model-00084-of-00233.safetensors +3 -0
- model-00085-of-00233.safetensors +3 -0
- model-00111-of-00233.safetensors +3 -0
- model-00114-of-00233.safetensors +3 -0
- model-00115-of-00233.safetensors +3 -0
- model-00117-of-00233.safetensors +3 -0
- model-00118-of-00233.safetensors +3 -0
- model-00119-of-00233.safetensors +3 -0
- model-00120-of-00233.safetensors +3 -0
- model-00122-of-00233.safetensors +3 -0
- model-00134-of-00233.safetensors +3 -0
- model-00135-of-00233.safetensors +3 -0
- model-00151-of-00233.safetensors +3 -0
- model-00154-of-00233.safetensors +3 -0
- model-00155-of-00233.safetensors +3 -0
- model-00159-of-00233.safetensors +3 -0
- model-00161-of-00233.safetensors +3 -0
- model-00162-of-00233.safetensors +3 -0
- model-00178-of-00233.safetensors +3 -0
- model-00179-of-00233.safetensors +3 -0
- model-00182-of-00233.safetensors +3 -0
- model-00191-of-00233.safetensors +3 -0
- model-00194-of-00233.safetensors +3 -0
- model-00195-of-00233.safetensors +3 -0
- model-00196-of-00233.safetensors +3 -0
- model-00197-of-00233.safetensors +3 -0
- model-00198-of-00233.safetensors +3 -0
- model-00206-of-00233.safetensors +3 -0
- model-00207-of-00233.safetensors +3 -0
- model-00208-of-00233.safetensors +3 -0
- model-00209-of-00233.safetensors +3 -0
- model-00224-of-00233.safetensors +3 -0
- model-00225-of-00233.safetensors +3 -0
- model-00227-of-00233.safetensors +3 -0
- mtp-00002-of-00004.safetensors +3 -0
model-00012-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:50169dedeb9fa784b293063c7b053455383492fbcfc60d929a0c3d7d9d07b22b
|
| 3 |
+
size 3221305280
|
model-00013-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3e05de844e9d1f9eb9a6d37f03270ef5073ee38fef59b5d83cfb0fdcbbf3cdb9
|
| 3 |
+
size 3210482104
|
model-00032-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:94d698b21b86e3b8a3ee45769cb1c00137edab3c2e3870693f0544eb769328a6
|
| 3 |
+
size 3210481920
|
model-00033-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:08f4a843e666b5204cfd2d24b715008e06831a990d2dc206f64cd90f4fc2a58f
|
| 3 |
+
size 3209642016
|
model-00040-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0ab11219e770cb9d05a391cf6b4f226180751ac132aeb53637dd3ee49fc05b81
|
| 3 |
+
size 3221108304
|
model-00052-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:10684bccafe19effae5529ee1b3c26d4db61d2341994116831b652ca6d79fbec
|
| 3 |
+
size 3221305152
|
model-00053-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0077610544fe62007cba1f7a02bb2a7bbafe4e87f87963c8e39a7dda8a465f48
|
| 3 |
+
size 3210482104
|
model-00064-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:01795f35cb53b537c0179142a669304aca862d96013c9d86cffc415bfcef7cb0
|
| 3 |
+
size 3221304648
|
model-00065-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9520164bd43c774fad8410f45c08354c2f70d150c20eb8c5d2beca84f691b399
|
| 3 |
+
size 3210481344
|
model-00068-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:219feb0b00b47c59d7a5dfceaa32a6743db006c90c1bb4a56e80693e99b73a93
|
| 3 |
+
size 3210482128
|
model-00070-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a65361ce0b0db3ce961de13011ad0183035b3cfadc73a4fb67032d31375bacb2
|
| 3 |
+
size 3214866240
|
model-00071-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7a561d6f7c11cda1ebfb0d80c7d23214ad9fcbc75dd290ce8b25e580e818a87c
|
| 3 |
+
size 3210482136
|
model-00072-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4c259a0517320223969ce7c31d0ca15db750cedf712d74e781f54c96c66d4347
|
| 3 |
+
size 3210482008
|
model-00073-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b5e91f3c9e21d433c6415d3f1e7d5773004fc66bc364b3eb6bf6f3dada96a764
|
| 3 |
+
size 3221304744
|
model-00080-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:06c3d41043b0a9b74a0489e74fc79cae3d39a77ccccb9e43b76f992b63d7079f
|
| 3 |
+
size 3221108304
|
model-00084-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1ef9fd8a97f562cc2558f52c3fd5e797494c51fca7dc43fa1c3f924a7c1e6885
|
| 3 |
+
size 3210482104
|
model-00085-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:341c79486acfa65542571c76517810f7748295d9a8b1012aeba07923dc483572
|
| 3 |
+
size 3210481512
|
model-00111-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f5777181d7b6e5394b1ef132031b86d8dfcfd60411fa584bf62edad6d537fc30
|
| 3 |
+
size 3210482136
|
model-00114-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1a4cdc2bad9d7977150622add87f908600a7b94f2e1437231e7da794047fc2b5
|
| 3 |
+
size 3210482128
|
model-00115-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2e69b284c797f77629e85cbc4db29563b110e65a6cd4a5fa180c08300d79fccb
|
| 3 |
+
size 3210482064
|
model-00117-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f9ea23f7aa99d83ed8c537f2325bcfbc22636d2ff8f9cef6c69190dd33716d33
|
| 3 |
+
size 3210482136
|
model-00118-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:02925fbed987ea2de3b4ec54104d1c22dcb66766b19c0f02ce8a756762a08861
|
| 3 |
+
size 3210482104
|
model-00119-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:85e7af4af36e668e1451301017958ce7fdd7981568547eda87bcd311c88bf02b
|
| 3 |
+
size 3185495504
|
model-00120-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:03e4b422830153f4d03a76057964fd7e638a9046582dc7672278711ba3ee0cbc
|
| 3 |
+
size 3221108304
|
model-00122-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2e8ecadf8dc1fbca83f1179999f772259b19565cba6d362a16b55b436783d299
|
| 3 |
+
size 3210481440
|
model-00134-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bbe2d9f313a49593bce834ccdfa0892f688364e2419095c1380607f7c174567a
|
| 3 |
+
size 3210480904
|
model-00135-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1340d7a9b523a39b7a570a0c5755bc1244137bac12ef78ccb4ae59f82df7e7f8
|
| 3 |
+
size 3221296592
|
model-00151-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:45af1f9c64c5236d36b8daad03af5e9d0513a414a37414919503749b8de17723
|
| 3 |
+
size 3210482136
|
model-00154-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7030409a210845c400767967046f564d89fd8172b91b0da98df9a63db2ea199c
|
| 3 |
+
size 3210482128
|
model-00155-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8730ee886812a117c726b952e5cea1e53fb28f3ef054943860a0e2e8910eb14d
|
| 3 |
+
size 3210482064
|
model-00159-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c0cdf10b2ba1b5c57e7a45bf876ab9b07d534ed62a7c2c9ce3074bf4e01efd87
|
| 3 |
+
size 3185495504
|
model-00161-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:81fddb96ef9fc1887c1029d621505755c33dd06fb5adb460f0362635641caabb
|
| 3 |
+
size 3210482112
|
model-00162-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5b11539d4de978173b6ffd6625ba2623f7fb80cc77c7a171c13d2065a25c646d
|
| 3 |
+
size 3210481440
|
model-00178-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dba21c0063d1f4045f1507c2032aa5faa651f4c6da68d73dab9ea8c762bcd3ff
|
| 3 |
+
size 3214866464
|
model-00179-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d9a7921366e82a25fa6f85d662dd1b9311d8713cabb678711d4a3ef8f3443b37
|
| 3 |
+
size 3210482104
|
model-00182-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f45d5ec7579ee47ea98c6e28f5d948cce9adebffdaccd4d069558e7dd80e1be3
|
| 3 |
+
size 3210482104
|
model-00191-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ff9eeb11b6c0a92d5455f2475aa0520aaf393091ad52382abc9180bb8c9c08bc
|
| 3 |
+
size 3210482136
|
model-00194-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2d937f7cf890ac9f876639e26f7c0638b7d528165913802a3d22fe980e9fb1ca
|
| 3 |
+
size 3210482128
|
model-00195-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:04d3c37c92f73232acf7d26c72bdbe2618c8c7f61f65bb8c67d66c61dac649bf
|
| 3 |
+
size 3210482080
|
model-00196-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ab89e39d6b967fd0334111c5baf0d8a0ab3fa81358c501b2c27c5b74da8dbee0
|
| 3 |
+
size 3221304672
|
model-00197-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:787418baf8fc4c5d21408894a9aeacc2f465ed50419db2770a88c46f59eac209
|
| 3 |
+
size 3210482128
|
model-00198-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5ad33b768652f53f330bcb49c55c6678dacd24176397a19c16ab45baa1986393
|
| 3 |
+
size 3210482104
|
model-00206-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4614ab7505264fae32fb33b1e5ba8b15cb2727553efe0c77e7375b572025c56b
|
| 3 |
+
size 3214866720
|
model-00207-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:250c60f9e81495401c08a40d7de93b0fc68c3580514ce7ef99b9240b708e0ac2
|
| 3 |
+
size 3210482104
|
model-00208-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5a28bbf388aad9bd79a4ccf5bb050c12b0df87dfd8d9ac91efe013398be86ecb
|
| 3 |
+
size 3210481560
|
model-00209-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6076a3413f676760c72bb8b3fa651d5f6a6f8823ddec0446d1121c0d1eb89ba2
|
| 3 |
+
size 3221305224
|
model-00224-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ede8aa9585bcc4b6d27539599714fa7e6244aea7ca371228ddba4a23b36aaddb
|
| 3 |
+
size 3221304912
|
model-00225-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1f2d303a983e85857cfefd5008214eb96a8effddcaadaca228db5bb60a655fad
|
| 3 |
+
size 3210482104
|
model-00227-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8483bcb720955d64fed260af1972c15a7ddc0f853dc55f762b6b8835b29463fb
|
| 3 |
+
size 3221296456
|
mtp-00002-of-00004.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ef349e53c0a2c1fcf037e42222723d61d50b85950441bf801a0ba241c4e16852
|
| 3 |
+
size 3210482112
|