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-00004-of-00233.safetensors +3 -0
- model-00005-of-00233.safetensors +3 -0
- model-00008-of-00233.safetensors +3 -0
- model-00009-of-00233.safetensors +3 -0
- model-00024-of-00233.safetensors +3 -0
- model-00025-of-00233.safetensors +3 -0
- model-00026-of-00233.safetensors +3 -0
- model-00027-of-00233.safetensors +3 -0
- model-00029-of-00233.safetensors +3 -0
- model-00031-of-00233.safetensors +3 -0
- model-00044-of-00233.safetensors +3 -0
- model-00045-of-00233.safetensors +3 -0
- model-00047-of-00233.safetensors +3 -0
- model-00048-of-00233.safetensors +3 -0
- model-00049-of-00233.safetensors +3 -0
- model-00069-of-00233.safetensors +3 -0
- model-00088-of-00233.safetensors +3 -0
- model-00091-of-00233.safetensors +3 -0
- model-00092-of-00233.safetensors +3 -0
- model-00103-of-00233.safetensors +3 -0
- model-00116-of-00233.safetensors +3 -0
- model-00123-of-00233.safetensors +3 -0
- model-00138-of-00233.safetensors +3 -0
- model-00139-of-00233.safetensors +3 -0
- model-00143-of-00233.safetensors +3 -0
- model-00149-of-00233.safetensors +3 -0
- model-00152-of-00233.safetensors +3 -0
- model-00153-of-00233.safetensors +3 -0
- model-00156-of-00233.safetensors +3 -0
- model-00157-of-00233.safetensors +3 -0
- model-00160-of-00233.safetensors +3 -0
- model-00163-of-00233.safetensors +3 -0
- model-00166-of-00233.safetensors +3 -0
- model-00167-of-00233.safetensors +3 -0
- model-00175-of-00233.safetensors +3 -0
- model-00183-of-00233.safetensors +3 -0
- model-00188-of-00233.safetensors +3 -0
- model-00189-of-00233.safetensors +3 -0
- model-00193-of-00233.safetensors +3 -0
- model-00199-of-00233.safetensors +3 -0
- model-00210-of-00233.safetensors +3 -0
- model-00211-of-00233.safetensors +3 -0
- model-00212-of-00233.safetensors +3 -0
- model-00213-of-00233.safetensors +3 -0
- model-00214-of-00233.safetensors +3 -0
- model-00215-of-00233.safetensors +3 -0
- model-00217-of-00233.safetensors +3 -0
- model-00223-of-00233.safetensors +3 -0
- mtp-00003-of-00004.safetensors +3 -0
- mtp-00004-of-00004.safetensors +3 -0
model-00004-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6fdd6cc986d52e5c4fb9b4ee5968c98ead3025f21d4bab1b6a1b8579ee055d5a
|
| 3 |
+
size 3210482104
|
model-00005-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8dac0d4ca239c3832e3cde0562ea4738fe1b17a775adeaf9f0d780963fe323ea
|
| 3 |
+
size 3206727368
|
model-00008-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4d4f6c41be3c90f3c725f6aad8d49fb54fb63fe2537916cbd00cac72abc3f4a2
|
| 3 |
+
size 3210481448
|
model-00009-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f9cffa03c75f50c04f73ea72aae78cf0640a74fc1268208ce1b0ab96206eb8e9
|
| 3 |
+
size 3221297144
|
model-00024-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3ca0d03f13e95f58e3bffe31bc9c5cedac84230d654db7599a0a19152394edbd
|
| 3 |
+
size 3221305032
|
model-00025-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fe6862cbe493bc0ee84abf19934efd127f27079236577050db32904675038d7e
|
| 3 |
+
size 3210482104
|
model-00026-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:24128c9a2415c662926eaea404eb8c5abd115f9d0c25a4d2b3f2c4ff89b6e495
|
| 3 |
+
size 3210481800
|
model-00027-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b4861bb320a88c987c458faf198218002b616744e354c104963c154992c88b16
|
| 3 |
+
size 3221304968
|
model-00029-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5efe6d02e4f1c728430f3df625751f032d77b4c96e8884fd765b0c420c1faad7
|
| 3 |
+
size 3210481848
|
model-00031-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f58ba4ae9a8e19181d9db2dd64642e47a5eac0af9f5a16f373ccdb219d000130
|
| 3 |
+
size 3210482112
|
model-00044-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6e40faea6595996eed913240d82cc54dc4ad59bf78b803cdcbe62764abd5f51c
|
| 3 |
+
size 3210482104
|
model-00045-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:414cb11cdf1a853e76f4453cce25eab79a69024b4256d01275158277f8029832
|
| 3 |
+
size 3210481512
|
model-00047-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aba7bab598900b4e6f736c32c5b86db8ee5c1d6ac22c8d621724c6508cc40119
|
| 3 |
+
size 3210482104
|
model-00048-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bc746e542240e147a55dab7c4a9122d354dade50147fbf30d37e579b5a9f78cc
|
| 3 |
+
size 3210481560
|
model-00049-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ef5a432225de9999ff28e71a06d3fb6850fadb34160ce496497b9c6e37fd2bf5
|
| 3 |
+
size 3221305224
|
model-00069-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:46723b232f2530694a6ae98cad1a193d585280e8e139eb530e085158861113d1
|
| 3 |
+
size 3210481944
|
model-00088-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:68d135c0ed8ae9944ca65763cc86ac216eefd9ad4d0c583e83481f23752ed467
|
| 3 |
+
size 3210481560
|
model-00091-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1dd388f4b7f34fcb4e22c4dece30cb31bf56e05854828a968de928e273879def
|
| 3 |
+
size 3210481624
|
model-00092-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:22b40c8e2649da175dfaf5c40bf9757e3413fbdd295da84fecc3326801aac2db
|
| 3 |
+
size 3221305152
|
model-00103-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cbde9385016e3a52070dab850774eb021119e3cc1c6b972c41264716d6541481
|
| 3 |
+
size 3210481848
|
model-00116-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4d39c9dcb20183f546763b9bf63745d5f257e63686856686ed40a698e8c9821e
|
| 3 |
+
size 3221304680
|
model-00123-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f102d0db0ab686c813e7c9a16ca8f9239d925d630a6013a7ed5560cec4f3ea6c
|
| 3 |
+
size 3214866776
|
model-00138-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6c964346f5284c6633abd2ffd76255d407046514d3f40c8149ded1c5dd579c3c
|
| 3 |
+
size 3214866472
|
model-00139-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aa0d8a9c343e20d029388c6ef1ed0cd3d108aad2bc59ed45ed7d0713e04c0a4b
|
| 3 |
+
size 3210482104
|
model-00143-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e762d2d2abf65cfc7ede7ee4be55a8c2838ac7f02de04bc5b3f087023f3abd21
|
| 3 |
+
size 3210481848
|
model-00149-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8e9a55c485e3548d15fde207aae9f8e4294a749a2f5b66b896526c63ba9167d4
|
| 3 |
+
size 3210481944
|
model-00152-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ad08a1238e15dc6c8b1d43b2fa2fc55608857fb54430d24b039a2bbb30a369fa
|
| 3 |
+
size 3210482008
|
model-00153-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e862375e25be012f8d8d7692e80e4634f06449bc05bc73a943237c8a6b7e77b2
|
| 3 |
+
size 3221304744
|
model-00156-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0b35111a3f30c2905a514985d2b01392fb9eabf7335173831cd1383242b3f041
|
| 3 |
+
size 3221304680
|
model-00157-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7085f7777360d439e602fd513668df62899d58cd8f01f12c2363c3215d9c4754
|
| 3 |
+
size 3210482136
|
model-00160-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e19615d46145d2b97d46a9e68157f9d32d7e17494c5a8e1e077f02d40a955e12
|
| 3 |
+
size 3221108304
|
model-00163-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d788e4e6d439b479555136f09a8ceca0bded8e8ddebd5531c456992b5af860ce
|
| 3 |
+
size 3214866776
|
model-00166-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4817751890582ca7ba563a64b34285f3609e00a5e8967a683d82b25dc995a096
|
| 3 |
+
size 3221296472
|
model-00167-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:755d2e1bf431c915144975210207fecd9e608778dcf925e66c8f33806334b8c9
|
| 3 |
+
size 3210481344
|
model-00175-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d6bf1db844865a6a5e2b4ea8d17b267ec05e43d2d7c9d85c1274e2a6adac5f70
|
| 3 |
+
size 3221305088
|
model-00183-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:51acca23ba29d3947049510650ef46de98c031757456848e030f04f34e6a9fa0
|
| 3 |
+
size 3210481856
|
model-00188-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fd45015463ba3b12154335297d710246a02ae6beaf4fbbb608c8d108ccbc1805
|
| 3 |
+
size 3210482128
|
model-00189-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:179293e434e1a049d9c58e7c837b0cd9a8e430e243474a45d999c9fe7ec24b22
|
| 3 |
+
size 3210481952
|
model-00193-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:32defd886f1b239efdd253b2a7e8095aedf68280c26ae043b941938fa021e77b
|
| 3 |
+
size 3221296544
|
model-00199-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:70dc311bfedd186f567d81b94c9679785f53f18535f2f55195ee66720e79cc50
|
| 3 |
+
size 3210678488
|
model-00210-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3a5eb8cdbc11a60c0fe26b002885b7fd90b95cf95df4428f965137f2b0550041
|
| 3 |
+
size 3210482112
|
model-00211-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:628f9a896ea5042f4d1171ec66886e2ae6ea97ce51ebc95982b76acb06dc778c
|
| 3 |
+
size 3210481624
|
model-00212-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e55f65d302ea665ab8f86da3bc1acc97e3edc3d5ee484fc7104ade32d210219a
|
| 3 |
+
size 3221305152
|
model-00213-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a7ad335394dd1cb94aa68d379bbf2c0cf93294ba9060ab39f4dbdad76bc5925b
|
| 3 |
+
size 3210482104
|
model-00214-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7602f51c63b70474024df6b12d2eef1b511570a3ac4aef1074351d9b927c6aa8
|
| 3 |
+
size 3210481672
|
model-00215-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1817075b07814451c7d868ecace869c6e04832a2594e8641e23ae6ee9b4982b9
|
| 3 |
+
size 3221296904
|
model-00217-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8cbc02e69ec6976e64bee837118dd62afb0615fc21968909216f73cbd5093454
|
| 3 |
+
size 3210481728
|
model-00223-of-00233.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dd6966ef80b94e5c1bcb2af5668281f903d907abd1c06c9dd8c9e9d38c6d63d7
|
| 3 |
+
size 3210481848
|
mtp-00003-of-00004.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f508c90c88dc7f94c13464f8f10cb3dde47e44f498ca0c11b4e393c6482de1cc
|
| 3 |
+
size 3210481440
|
mtp-00004-of-00004.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9fb916505ffe18245236e2360fb9d6681363e13ae82f131c2065095423120796
|
| 3 |
+
size 416818584
|