Instructions to use QuixiAI/MiniMax-M2.1-bf16 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use QuixiAI/MiniMax-M2.1-bf16 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="QuixiAI/MiniMax-M2.1-bf16", trust_remote_code=True) messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("QuixiAI/MiniMax-M2.1-bf16", trust_remote_code=True) model = AutoModelForCausalLM.from_pretrained("QuixiAI/MiniMax-M2.1-bf16", trust_remote_code=True, 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 QuixiAI/MiniMax-M2.1-bf16 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "QuixiAI/MiniMax-M2.1-bf16" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "QuixiAI/MiniMax-M2.1-bf16", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/QuixiAI/MiniMax-M2.1-bf16
- SGLang
How to use QuixiAI/MiniMax-M2.1-bf16 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 "QuixiAI/MiniMax-M2.1-bf16" \ --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": "QuixiAI/MiniMax-M2.1-bf16", "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 "QuixiAI/MiniMax-M2.1-bf16" \ --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": "QuixiAI/MiniMax-M2.1-bf16", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use QuixiAI/MiniMax-M2.1-bf16 with Docker Model Runner:
docker model run hf.co/QuixiAI/MiniMax-M2.1-bf16
Add files using upload-large-folder tool
Browse files- model-00001-of-00130.safetensors +3 -0
- model-00003-of-00130.safetensors +3 -0
- model-00009-of-00130.safetensors +3 -0
- model-00011-of-00130.safetensors +3 -0
- model-00012-of-00130.safetensors +3 -0
- model-00017-of-00130.safetensors +3 -0
- model-00019-of-00130.safetensors +3 -0
- model-00020-of-00130.safetensors +3 -0
- model-00021-of-00130.safetensors +3 -0
- model-00023-of-00130.safetensors +3 -0
- model-00025-of-00130.safetensors +3 -0
- model-00029-of-00130.safetensors +3 -0
- model-00031-of-00130.safetensors +3 -0
- model-00033-of-00130.safetensors +3 -0
- model-00034-of-00130.safetensors +3 -0
- model-00035-of-00130.safetensors +3 -0
- model-00038-of-00130.safetensors +3 -0
- model-00039-of-00130.safetensors +3 -0
- model-00040-of-00130.safetensors +3 -0
- model-00041-of-00130.safetensors +3 -0
- model-00043-of-00130.safetensors +3 -0
- model-00044-of-00130.safetensors +3 -0
- model-00045-of-00130.safetensors +3 -0
- model-00048-of-00130.safetensors +3 -0
- model-00051-of-00130.safetensors +3 -0
- model-00053-of-00130.safetensors +3 -0
- model-00055-of-00130.safetensors +3 -0
- model-00065-of-00130.safetensors +3 -0
- model-00067-of-00130.safetensors +3 -0
- model-00073-of-00130.safetensors +3 -0
- model-00075-of-00130.safetensors +3 -0
- model-00077-of-00130.safetensors +3 -0
- model-00080-of-00130.safetensors +3 -0
- model-00081-of-00130.safetensors +3 -0
- model-00083-of-00130.safetensors +3 -0
- model-00086-of-00130.safetensors +3 -0
- model-00089-of-00130.safetensors +3 -0
- model-00091-of-00130.safetensors +3 -0
- model-00093-of-00130.safetensors +3 -0
- model-00102-of-00130.safetensors +3 -0
- model-00103-of-00130.safetensors +3 -0
- model-00105-of-00130.safetensors +3 -0
- model-00107-of-00130.safetensors +3 -0
- model-00109-of-00130.safetensors +3 -0
- model-00111-of-00130.safetensors +3 -0
- model-00113-of-00130.safetensors +3 -0
- model-00114-of-00130.safetensors +3 -0
- model-00115-of-00130.safetensors +3 -0
- model-00117-of-00130.safetensors +3 -0
- model-00123-of-00130.safetensors +3 -0
model-00001-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3914fb2a090e0b61325fc6052bc90a778796730b3573e5bc8df1e03a7696d27a
|
| 3 |
+
size 2415952560
|
model-00003-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:64bcc591fef7caa39767cc64df257ed94f8f6b28c4796d66d7c0580521232530
|
| 3 |
+
size 2415952560
|
model-00009-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:441a64a276c871a2adbe0cc05a0c4c65226023aca0cfcb5ef57a2bfe124faf84
|
| 3 |
+
size 2415952560
|
model-00011-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f9524916fafb1417bc4d3cc7af87ec972a7596c689412bd5fb99cf86998a503a
|
| 3 |
+
size 2415952560
|
model-00012-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6f332adc410c8e4c91c9618c0d19b0e6a66583402b056ec720bfc3039c55518c
|
| 3 |
+
size 4923160256
|
model-00017-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:918df172256ebb073e5153509f51d3e7cfdcb2361a26183a84a421b8a542a192
|
| 3 |
+
size 2415952560
|
model-00019-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d16f20eae1dba0a5caf64c62bc498d0966969fec9847029f39ef8c160f6c1b53
|
| 3 |
+
size 2415952560
|
model-00020-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:048125bc7ba68de23635bc72a0f3a9d49202cc18b18200c85397d6fd7439e377
|
| 3 |
+
size 4923160776
|
model-00021-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fb151adf045585e14e7cc33fa38ab2e38e280ee7294183deafe9264663158141
|
| 3 |
+
size 2415952816
|
model-00023-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eb41aae5f0f08297e5a7de180f203ffecfc8360130d511037a6125e6cd07b748
|
| 3 |
+
size 2415952816
|
model-00025-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:21e4a0cf28fa7edde02985d07c854a94ab73fe432ebf3e7d5953ad7a44b13ded
|
| 3 |
+
size 2415952816
|
model-00029-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dd57fe90596f5c636765e141c3ce975183aa8322ef3d036ea8a5001fa2a9c3ac
|
| 3 |
+
size 2415952816
|
model-00031-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e139319257126d84d5b9a47744e08eda1c68ccc18e4e7d768cdb97731a1f0f34
|
| 3 |
+
size 2415952816
|
model-00033-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2e371571fbb7d94d724a697d3b66cead12060e2046f2f46ced6f3a84aaac9901
|
| 3 |
+
size 2415952816
|
model-00034-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6d643de00d8e8d68087441f50bd9eefbe1d46837d91271576ce2d77085817d00
|
| 3 |
+
size 4923160776
|
model-00035-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a72f8a80e7d1f2355ded5b9d77f224cb8be1a1a25622329e4b8e515509f0e264
|
| 3 |
+
size 2415952816
|
model-00038-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9795057f4ca478adca9755607d7214594a9b7c7b4808c07bc528b57737de874d
|
| 3 |
+
size 4923160776
|
model-00039-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0f5f7753f6f68ee919067f24fb6444c3aa82f195e379336590101d66f32343d6
|
| 3 |
+
size 2415952816
|
model-00040-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:855e8e60948e3d706fa0e3adf6706b87dc7566a29377404bd9123d868db3628b
|
| 3 |
+
size 4923160776
|
model-00041-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:79544ba64ee61325985660e416dd13e2154685574ecdb95083cf07f9efb755d3
|
| 3 |
+
size 2415952816
|
model-00043-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0ee8b1b54e3140f6b32ea4b6dcb108ff911cd6f53532ff54227ba25a22d46172
|
| 3 |
+
size 2415952816
|
model-00044-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d984165fb956a84e160eb7cc136d547dc1bda670b8a33fc8f36648568d9321de
|
| 3 |
+
size 4923160776
|
model-00045-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:629fdd0d7fee1032a0199c9e543bc2dd1edc9e4a2dcbac73b55e784db55292e2
|
| 3 |
+
size 2415952816
|
model-00048-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4d51c661edac34e7324abaecf569b67ba3cd01cc74200a5729f542720a7867cd
|
| 3 |
+
size 4923160776
|
model-00051-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0754815c3ab1635576ca8666ef339c72bcfe97ca8d030e1d3a813554c864a5b4
|
| 3 |
+
size 2415952816
|
model-00053-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fadb818806171e22d81f7b18e9a096b7164a7870a43e7523327e023a079ebb78
|
| 3 |
+
size 2415952816
|
model-00055-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6dd9d272747c1d539d5a8277515cf5c07f27d44e3499c37923c870355fd02a46
|
| 3 |
+
size 2415952816
|
model-00065-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f36431c990280269c9f5cbb04fcc0145e2b7939c714a6dc9a05945b5780507b2
|
| 3 |
+
size 2415952816
|
model-00067-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1f256970a72eb48f2541b27e43243ff9423b0bdb561e11cfcbabfa8eefe73dad
|
| 3 |
+
size 2415952816
|
model-00073-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:544864dc1fab36245fea662add5a37eb1b702098f8ed87fc205abe0389dd0bab
|
| 3 |
+
size 2415952816
|
model-00075-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dd706f4d049102054d00dd363b540b0283d6bf5c283156b967100e9560bbd2ec
|
| 3 |
+
size 2415952816
|
model-00077-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a88e858d992d3c1dc714135dee015fd5f2e6a7fc289bcd359332a5c22edd73df
|
| 3 |
+
size 2415952816
|
model-00080-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b8b1babbefc06b3f14436f2d3c693fa31458e3b359f39ba39f8af3e73c7a4037
|
| 3 |
+
size 4923160776
|
model-00081-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:87e2b5d2984f067c266caaf8f26684c9b3ab43a68ce64c21102bca35fbf8c746
|
| 3 |
+
size 2415952816
|
model-00083-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:29529bda2427c122dedcf3ac1ba27a074038850f385622040eba77739ac852d4
|
| 3 |
+
size 2415952816
|
model-00086-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:63fb82099f414a0955efa2a2eb8e014544811b58b479b66a7a9158cf2bb4a78b
|
| 3 |
+
size 4923160776
|
model-00089-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6d7366c37c147dd824105fcc201781d65355fd4c8266c3a8437590a736666057
|
| 3 |
+
size 2415952816
|
model-00091-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c56bbd84336bf08ec8bd1c8c922b9249593c6c64ba5647c4302cffb9ed227fea
|
| 3 |
+
size 2415952816
|
model-00093-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:62747838386ea9fd7b657f3812dd085283b30c3e4d3fc9989748bab0bc75faca
|
| 3 |
+
size 2415952816
|
model-00102-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aff26305008bd8bbcde517b2ffe05d210cd2a2f0211a0808685707c7356b5ad1
|
| 3 |
+
size 4923160776
|
model-00103-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:92d7fc8e289c0388885f8cf89ed3b59be6bf10361c6d70e215e8b4ed0a7c0678
|
| 3 |
+
size 2415952816
|
model-00105-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5eabeb9f0ab399861cb0e313ba0f849394534d86c7458531d60fb7f47592fe72
|
| 3 |
+
size 2415952816
|
model-00107-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:49d6c094084c7716fb1c3826d5e3a91ea6dbd5e88b2be9a606f521b94d39c119
|
| 3 |
+
size 2415952816
|
model-00109-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2551ed62ad138da215d70a83fc164eb425c104aabdeea2789c0c1bab977fad52
|
| 3 |
+
size 2415952816
|
model-00111-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:094ed585594f7e6e9e6f2a139eed596107b901153b7837e749d9b1fb55170be3
|
| 3 |
+
size 2415952816
|
model-00113-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4cae65c6f71f737e1abad5c7d9b0e8947330b681cbccea6d380301deaeccb124
|
| 3 |
+
size 2415952816
|
model-00114-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:93cba67649e030868489227533f8025ae3c6f9717ec59f635124aef0c1a00c9b
|
| 3 |
+
size 4923160776
|
model-00115-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:17fd018127246c5e6bbab7dd5fa397fa13f0cdf68987c13cffa1ef02a3effb4f
|
| 3 |
+
size 2415952816
|
model-00117-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fb96af2080937fad6723aed0184c126f692d3b705f28373f69d7c1e68d4b92d1
|
| 3 |
+
size 2415952816
|
model-00123-of-00130.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:25db8dc09c8fba3faf904596d109732d7c324b980a3e820a8a1c721ba5dfa9d8
|
| 3 |
+
size 2415952816
|