Image-Text-to-Text
Transformers
Safetensors
English
qwen3_5_moe
conversational
8-bit precision
quark
Instructions to use amd/Qwen3.5-397B-A17B-MXFP4 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use amd/Qwen3.5-397B-A17B-MXFP4 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="amd/Qwen3.5-397B-A17B-MXFP4") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("amd/Qwen3.5-397B-A17B-MXFP4") model = AutoModelForMultimodalLM.from_pretrained("amd/Qwen3.5-397B-A17B-MXFP4", device_map="auto") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = processor.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(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use amd/Qwen3.5-397B-A17B-MXFP4 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "amd/Qwen3.5-397B-A17B-MXFP4" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "amd/Qwen3.5-397B-A17B-MXFP4", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/amd/Qwen3.5-397B-A17B-MXFP4
- SGLang
How to use amd/Qwen3.5-397B-A17B-MXFP4 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 "amd/Qwen3.5-397B-A17B-MXFP4" \ --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": "amd/Qwen3.5-397B-A17B-MXFP4", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'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 "amd/Qwen3.5-397B-A17B-MXFP4" \ --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": "amd/Qwen3.5-397B-A17B-MXFP4", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }' - Docker Model Runner
How to use amd/Qwen3.5-397B-A17B-MXFP4 with Docker Model Runner:
docker model run hf.co/amd/Qwen3.5-397B-A17B-MXFP4
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.safetensors-00002-of-00094.safetensors +1 -1
- model.safetensors-00003-of-00094.safetensors +1 -1
- model.safetensors-00004-of-00094.safetensors +1 -1
- model.safetensors-00008-of-00094.safetensors +1 -1
- model.safetensors-00009-of-00094.safetensors +1 -1
- model.safetensors-00011-of-00094.safetensors +1 -1
- model.safetensors-00012-of-00094.safetensors +1 -1
- model.safetensors-00013-of-00094.safetensors +1 -1
- model.safetensors-00015-of-00094.safetensors +1 -1
- model.safetensors-00016-of-00094.safetensors +1 -1
- model.safetensors-00017-of-00094.safetensors +1 -1
- model.safetensors-00018-of-00094.safetensors +1 -1
- model.safetensors-00020-of-00094.safetensors +1 -1
- model.safetensors-00025-of-00094.safetensors +1 -1
- model.safetensors-00026-of-00094.safetensors +1 -1
- model.safetensors-00027-of-00094.safetensors +1 -1
- model.safetensors-00030-of-00094.safetensors +1 -1
- model.safetensors-00031-of-00094.safetensors +1 -1
- model.safetensors-00033-of-00094.safetensors +1 -1
- model.safetensors-00034-of-00094.safetensors +1 -1
- model.safetensors-00035-of-00094.safetensors +1 -1
- model.safetensors-00037-of-00094.safetensors +1 -1
- model.safetensors-00039-of-00094.safetensors +1 -1
- model.safetensors-00040-of-00094.safetensors +1 -1
- model.safetensors-00041-of-00094.safetensors +1 -1
- model.safetensors-00042-of-00094.safetensors +1 -1
- model.safetensors-00043-of-00094.safetensors +1 -1
- model.safetensors-00048-of-00094.safetensors +1 -1
- model.safetensors-00049-of-00094.safetensors +1 -1
- model.safetensors-00052-of-00094.safetensors +1 -1
- model.safetensors-00055-of-00094.safetensors +1 -1
- model.safetensors-00057-of-00094.safetensors +1 -1
- model.safetensors-00060-of-00094.safetensors +1 -1
- model.safetensors-00062-of-00094.safetensors +1 -1
- model.safetensors-00063-of-00094.safetensors +1 -1
- model.safetensors-00065-of-00094.safetensors +1 -1
- model.safetensors-00067-of-00094.safetensors +1 -1
- model.safetensors-00068-of-00094.safetensors +1 -1
- model.safetensors-00069-of-00094.safetensors +1 -1
- model.safetensors-00072-of-00094.safetensors +1 -1
- model.safetensors-00075-of-00094.safetensors +1 -1
- model.safetensors-00076-of-00094.safetensors +1 -1
- model.safetensors-00077-of-00094.safetensors +1 -1
- model.safetensors-00080-of-00094.safetensors +1 -1
- model.safetensors-00081-of-00094.safetensors +1 -1
- model.safetensors-00082-of-00094.safetensors +1 -1
- model.safetensors-00085-of-00094.safetensors +1 -1
- model.safetensors-00087-of-00094.safetensors +1 -1
- model.safetensors-00088-of-00094.safetensors +1 -1
- model.safetensors-00089-of-00094.safetensors +1 -1
model.safetensors-00002-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281988744
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d4d02bc4c9bd82d49fde38dbc340c1e01530be3972e28dd21897ae28c98a03a3
|
| 3 |
size 2281988744
|
model.safetensors-00003-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281988744
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8dd2651ce1b991bcee5e00bc803c9ebc79c9bd506c68f41831526896623755a4
|
| 3 |
size 2281988744
|
model.safetensors-00004-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281986696
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c40466b3575e698a8f3d39816ac6d638c8553002868fea01489b8aa0de2720a3
|
| 3 |
size 2281986696
|
model.safetensors-00008-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281988744
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9670a9cb93faf964c8d0dc586d70afbbbfe12eaa5e2c060f3b7ab637fd111a10
|
| 3 |
size 2281988744
|
model.safetensors-00009-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281988744
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bc24cef08279c9a813e9bb11e89fc20544d0c6306172c91a34ba517e85452b1a
|
| 3 |
size 2281988744
|
model.safetensors-00011-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281988744
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e1013c9ac580494e775d3cdb522c67c53077e87ef81ca15071730717e2698e7e
|
| 3 |
size 2281988744
|
model.safetensors-00012-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281988744
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2f9bbe03a057819b823141e78825e90170bc59736cb9095501a5360d487146a9
|
| 3 |
size 2281988744
|
model.safetensors-00013-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281988744
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:97e51e07bb068d2920fbfb3c711c03e50f3da793fc9f79676be4cd420538fbfc
|
| 3 |
size 2281988744
|
model.safetensors-00015-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281988744
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:95088c0f24d0b428b7bc00d5b08637fb0c1cdf117222309e0cdea775be3bd890
|
| 3 |
size 2281988744
|
model.safetensors-00016-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281986696
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:278c907751bbdb096a00882caf4185c81914da4902bd0929ab9655f7cda3d5e8
|
| 3 |
size 2281986696
|
model.safetensors-00017-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281988744
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:783b1466cfd55ed76964ec48b9f0cc37a160147d87872ff8fce5148e0d55f36f
|
| 3 |
size 2281988744
|
model.safetensors-00018-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281986696
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6e798c98128468fe5be7e58f38d4efa1abb610cb842b294a6b223cb665ad992e
|
| 3 |
size 2281986696
|
model.safetensors-00020-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281988744
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cd150faf57c8358dfc51c19492703ec7c9ae550e03b8d9a0f8668484cfd532d2
|
| 3 |
size 2281988744
|
model.safetensors-00025-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281988744
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e4dea79792544de2fab3bb05bf1d9744c01e037d3f576af253eabeff025905d7
|
| 3 |
size 2281988744
|
model.safetensors-00026-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281988744
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9e2ec3d1c7dd81d9e4b525ba2310b54bc4ee0c9e5ead6a7604a8e8ff55acf2f8
|
| 3 |
size 2281988744
|
model.safetensors-00027-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281988744
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7448c48080bfc8cbc68da4e4b518dc7050044e9ae8537d5dca96391af1f6e41f
|
| 3 |
size 2281988744
|
model.safetensors-00030-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281988744
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:301a956039c93058a628241e6938d6f15ac6d058acd3469496bb1846a1dc9153
|
| 3 |
size 2281988744
|
model.safetensors-00031-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281986696
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:086b0eeca002eae1e45064303fc112b8233718546e38971a40371019455a0b15
|
| 3 |
size 2281986696
|
model.safetensors-00033-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281988744
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:280347a11f53eb5d6bb7543a3167939c18d387d0ea8b39749c93dac41289b29b
|
| 3 |
size 2281988744
|
model.safetensors-00034-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281988744
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:67b76be428e41fc9e3e8630a1ca6756ded5fadbd2c6a6f29cc0c481f1f255746
|
| 3 |
size 2281988744
|
model.safetensors-00035-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281986696
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:edbc22f34283582c25fa1dc8c4b3ae850ca3feba7ac305180338a4b42a2ccf23
|
| 3 |
size 2281986696
|
model.safetensors-00037-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281988744
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4789e9031b7c90cee2ba0ddde50191da75670d631b05218a9129769c8cea5ecf
|
| 3 |
size 2281988744
|
model.safetensors-00039-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281988744
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a1470954ae770798a7d8c79b408cd6af676fed517809225c824976f4b341f2b7
|
| 3 |
size 2281988744
|
model.safetensors-00040-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281988744
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1d2e6d9aaed25bd86af967ad3c3a9852dbecd8b28a534dc66bd48c1b83d1445a
|
| 3 |
size 2281988744
|
model.safetensors-00041-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281988744
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0ff709fcf8c22f4b8f06fc0800776f24eedf1d468199c6fbd7b28646dfee5f6c
|
| 3 |
size 2281988744
|
model.safetensors-00042-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281988744
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0e176c3665300bac4d2daeac989b8277a775ff871a6a811816c77536d64dd052
|
| 3 |
size 2281988744
|
model.safetensors-00043-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281988744
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2dd20f9927cdd6f217b3bc16928676714cbd530ff0fbaa759a1223fd01981202
|
| 3 |
size 2281988744
|
model.safetensors-00048-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281988744
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9819baf987d7dcafd3b22627d3a67800710d4dcafd0e6b59d2f307660c736c54
|
| 3 |
size 2281988744
|
model.safetensors-00049-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281988744
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:84ab4f50454281eb52cd1d95b99402b0106fd3658a2c8a41463af75d47e3ac1d
|
| 3 |
size 2281988744
|
model.safetensors-00052-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281988744
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:43799f2712f096c05338072bfcc9a273b8617de46eda10a97c86a0deeb5938e6
|
| 3 |
size 2281988744
|
model.safetensors-00055-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281988744
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8952c59472fe6fb9ddb61bc785dd844cbc1b50ee9d0fe5de17e9f704e4557e88
|
| 3 |
size 2281988744
|
model.safetensors-00057-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281988744
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:01bcd01247a6c918c445425e3726a7d17c5dc6b5415bc4fc2dbdacdb1a06a46d
|
| 3 |
size 2281988744
|
model.safetensors-00060-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281988744
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:37e77f7aefb87e81e83551c6d235adfea8208f250bed1ee8d18c0a2095976e43
|
| 3 |
size 2281988744
|
model.safetensors-00062-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281987720
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c721f291f1ab226159a4f1b8bd9367a0f3a03c0d5869054920885ad3a4d1c03e
|
| 3 |
size 2281987720
|
model.safetensors-00063-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281987720
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:02ec8086ccf49e78b2c5432ff2af83ab5db7060d3eb64fc40b63a9db895e930f
|
| 3 |
size 2281987720
|
model.safetensors-00065-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281988744
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a45ed1ad4343f7e00f58d7c11ff1937a32e915045fb4464da99d9b4c9fd566be
|
| 3 |
size 2281988744
|
model.safetensors-00067-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281988744
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c1b7e925d14cb24a98a0a3f63b8d1ff9ac42d0548666969e01c35650c3961e09
|
| 3 |
size 2281988744
|
model.safetensors-00068-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281987720
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:df67431b6512ab4e30eecfd348c84f706da71ae774a3d154687fe026baa42bb9
|
| 3 |
size 2281987720
|
model.safetensors-00069-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281987720
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c6375df82491d2496eeeadd8d6fcabc0d4acb561b100f6066edfae22aa51f97a
|
| 3 |
size 2281987720
|
model.safetensors-00072-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281988744
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1d23d8bef79b6ff7c190b54df5de61a7c465a30d4f27497b8b4d3c65abbc5513
|
| 3 |
size 2281988744
|
model.safetensors-00075-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281987720
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:68a2a2eb165edbd1560b9e0ab09d4bc02cc9c7fac2fbaefd79223a7913082a71
|
| 3 |
size 2281987720
|
model.safetensors-00076-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281987720
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d12f08f4b66fd61f953f1a8eb72fc377c48f6fb0a19c96c67f1a457fbc051806
|
| 3 |
size 2281987720
|
model.safetensors-00077-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281988744
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5231d75591289820c29be6134ee3998717e01693638d13dfce6c753d899cc038
|
| 3 |
size 2281988744
|
model.safetensors-00080-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281988744
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7d5a499f8ce33a2dce283b4e7a858a74d56fb7a1091e33638ca68b9d75f6a60a
|
| 3 |
size 2281988744
|
model.safetensors-00081-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281988744
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:223328b94547ad5433e8e4ed2ced5a6932e9319f1373a0bc0ea165df9da9df9e
|
| 3 |
size 2281988744
|
model.safetensors-00082-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281988744
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b8383fc084627c04be66eae2f7925fa89ab45a8c8b45a65720ff8f3c9176b8ce
|
| 3 |
size 2281988744
|
model.safetensors-00085-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281988744
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4474bae6977e1b86d617015fa88d8fff7a757a82c4f8f38fb53eb15c06ebef10
|
| 3 |
size 2281988744
|
model.safetensors-00087-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281988744
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c4cd407cc8b3344cac4516595f881e091f84a16c501859a9cfcc507b3a9f2e11
|
| 3 |
size 2281988744
|
model.safetensors-00088-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281988744
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:969ea2d13a2255522a01a1c39bcca05d2d584a6db94b830304416f285267a6ab
|
| 3 |
size 2281988744
|
model.safetensors-00089-of-00094.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2281988744
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3d191fb27b1f76a92c2cb6a1155095dd20c64fc93aab3a286fa2e0efb9bdca60
|
| 3 |
size 2281988744
|