Image-Text-to-Text
Transformers
Safetensors
kimi_k3
feature-extraction
compressed-tensors
conversational
custom_code
8-bit precision
Instructions to use AtomicChat/Kimi-K3 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use AtomicChat/Kimi-K3 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="AtomicChat/Kimi-K3", trust_remote_code=True) 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 AutoModel model = AutoModel.from_pretrained("AtomicChat/Kimi-K3", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use AtomicChat/Kimi-K3 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "AtomicChat/Kimi-K3" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "AtomicChat/Kimi-K3", "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/AtomicChat/Kimi-K3
- SGLang
How to use AtomicChat/Kimi-K3 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 "AtomicChat/Kimi-K3" \ --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": "AtomicChat/Kimi-K3", "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 "AtomicChat/Kimi-K3" \ --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": "AtomicChat/Kimi-K3", "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 AtomicChat/Kimi-K3 with Docker Model Runner:
docker model run hf.co/AtomicChat/Kimi-K3
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-00003-of-000096.safetensors +3 -0
- model-00005-of-000096.safetensors +3 -0
- model-00006-of-000096.safetensors +3 -0
- model-00008-of-000096.safetensors +3 -0
- model-00009-of-000096.safetensors +3 -0
- model-00010-of-000096.safetensors +3 -0
- model-00011-of-000096.safetensors +3 -0
- model-00012-of-000096.safetensors +3 -0
- model-00013-of-000096.safetensors +3 -0
- model-00014-of-000096.safetensors +3 -0
- model-00015-of-000096.safetensors +3 -0
- model-00016-of-000096.safetensors +3 -0
- model-00018-of-000096.safetensors +3 -0
- model-00019-of-000096.safetensors +3 -0
- model-00021-of-000096.safetensors +3 -0
- model-00022-of-000096.safetensors +3 -0
- model-00023-of-000096.safetensors +3 -0
- model-00024-of-000096.safetensors +3 -0
- model-00025-of-000096.safetensors +3 -0
- model-00026-of-000096.safetensors +3 -0
- model-00027-of-000096.safetensors +3 -0
- model-00028-of-000096.safetensors +3 -0
- model-00029-of-000096.safetensors +3 -0
- model-00031-of-000096.safetensors +3 -0
- model-00033-of-000096.safetensors +3 -0
- model-00034-of-000096.safetensors +3 -0
- model-00035-of-000096.safetensors +3 -0
- model-00037-of-000096.safetensors +3 -0
- model-00040-of-000096.safetensors +3 -0
- model-00041-of-000096.safetensors +3 -0
- model-00042-of-000096.safetensors +3 -0
- model-00043-of-000096.safetensors +3 -0
- model-00046-of-000096.safetensors +3 -0
- model-00048-of-000096.safetensors +3 -0
- model-00049-of-000096.safetensors +3 -0
- model-00051-of-000096.safetensors +3 -0
- model-00053-of-000096.safetensors +3 -0
- model-00055-of-000096.safetensors +3 -0
- model-00057-of-000096.safetensors +3 -0
- model-00058-of-000096.safetensors +3 -0
- model-00059-of-000096.safetensors +3 -0
- model-00060-of-000096.safetensors +3 -0
- model-00061-of-000096.safetensors +3 -0
- model-00062-of-000096.safetensors +3 -0
- model-00064-of-000096.safetensors +3 -0
- model-00065-of-000096.safetensors +3 -0
- model-00067-of-000096.safetensors +3 -0
- model-00068-of-000096.safetensors +3 -0
- model-00070-of-000096.safetensors +3 -0
- model-00075-of-000096.safetensors +3 -0
model-00003-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e54af9de4c554956082364010f732443bcd5097390f0121a33fb35e37280b5a9
|
| 3 |
+
size 16990911504
|
model-00005-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d60d68ad0381ffd2d8716d5991a65993cc81837455bf05d1c76ea3a75662e268
|
| 3 |
+
size 16990911504
|
model-00006-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b1d4805767471a9721cd087d2047843ab9262d4f9bbe0d4a306e72c07179f939
|
| 3 |
+
size 16990911504
|
model-00008-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2318dda54fc1985b63d6068de54fbe312ac87317c902666c9075aa5e10e8a1c9
|
| 3 |
+
size 16567501776
|
model-00009-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8b66cdde34f5130cf4f99ec35b16f1f6d33bf0ec946cf2a5612004f5d399f998
|
| 3 |
+
size 16990911504
|
model-00010-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d34f55f7b734a1eaecc986fc7f92bcaa1b7d18fad90a33befd3fae4f1b2771a9
|
| 3 |
+
size 16990911504
|
model-00011-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1738856a4cca2e356510892de4accf3c3f94b9f598b0394a87e7951740ba4a21
|
| 3 |
+
size 16990916912
|
model-00012-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c6b9bef38415f509898fa7b5c04d20c6fee84b0e02c05d74259d201fe6f3868b
|
| 3 |
+
size 16567507176
|
model-00013-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3cbf43d56d9c80be0f848a4866e290741c697e09d885dc2351b0a11de514d9c8
|
| 3 |
+
size 16990916912
|
model-00014-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ce5f343f07d408c64fb247bbe8691edb84d54e3976d3ff586ebcf5929fd143ad
|
| 3 |
+
size 16990916912
|
model-00015-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b55caa8013348498525eef2b1416a657f0c28264ada9b245df19d2eea168b4c1
|
| 3 |
+
size 16990916912
|
model-00016-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5a63e63ced659c1996b02ccabdea977546a39ecce025af1e54552de3bfc0489e
|
| 3 |
+
size 16567507176
|
model-00018-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:838b265ebb86a1320e589685779125d224663160823873b9e5930cf63fafe796
|
| 3 |
+
size 16990916912
|
model-00019-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:599a8ecf88f21d4c91295b4160e7564e501807535e522195ee45050a04f17ded
|
| 3 |
+
size 16990916912
|
model-00021-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1944265bd024ea6caa23796326e420260a801e5c52e6253155f22ce97e9578d0
|
| 3 |
+
size 16990916912
|
model-00022-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2d32d3e3c8da0764f73830289c6a22224f755c0cf058df0262fb0f83b3777029
|
| 3 |
+
size 16990916912
|
model-00023-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c291f2ec15788cb24cdf791c6d68dbf8803b26d01415cff3fab367cba581a169
|
| 3 |
+
size 16990916912
|
model-00024-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:278855ab81d42337e2a1857f136d740911fe3f5b1813dc21ce2cb03dc5c3cde3
|
| 3 |
+
size 16567507176
|
model-00025-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6e3ae6ad868f5b38fa7ddface520796ea251568b07447deee3d164a0a32d862b
|
| 3 |
+
size 16990916912
|
model-00026-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cdd79fb52c7a3350926c4b947ae82cccd0af17fa3fb537c5694a4cedf2b59811
|
| 3 |
+
size 16990916912
|
model-00027-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1d974b40c4aeb5cc0adeba6f9fbad25fc99f8cd39f9dd3513aeb2fb30a9c4188
|
| 3 |
+
size 16990916912
|
model-00028-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1bec58e89ab7835d3ca40e581cc6f047cb93de47fda804eaea4e2407e01c3ed3
|
| 3 |
+
size 16567507176
|
model-00029-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c3bf0e738aa5fbd6ca3ecad982aba8d09efffd58b40cd8fb62d02fe0492f5ceb
|
| 3 |
+
size 16990916912
|
model-00031-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c26689540a2471fe690c441a6cf9bec8f00471930e3131962206fd992e0d377c
|
| 3 |
+
size 16990916912
|
model-00033-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:615afa33b69cbaa42122bb3bcce92e40d6de86713a301c43c5d1bc2ac4342c1b
|
| 3 |
+
size 16990916912
|
model-00034-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a53b27fe92df11e77aec7c5de93ac148b9e2a7bac95020535f68854a7977bde7
|
| 3 |
+
size 16990916912
|
model-00035-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9f4b44c89e4965a973f4fa71eaa0f8ada110f588065541e83bf52692feaa886d
|
| 3 |
+
size 16990916912
|
model-00037-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e95dd3599d6918f5a22bc7b1256aaee9147f40aa05f43135d083d511eb5cbd80
|
| 3 |
+
size 16990916912
|
model-00040-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6f664598c00aee095174db1f860182652ff9b808f53c7764f70e071c6f8a4893
|
| 3 |
+
size 16567507176
|
model-00041-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:375f05f94a59d1509bef0976269fceb8f28d40e161d4903e64f735b1ede405c2
|
| 3 |
+
size 16990916912
|
model-00042-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b65947611d6c150394955f4637d4b05007f20a9b1c0f0f02bcf45d0ae2a428ba
|
| 3 |
+
size 16990916912
|
model-00043-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b5a425f100bbfaf804ac2dcca197ccf8fb3a910b6aa79d93e3a103b0146a8309
|
| 3 |
+
size 16990916912
|
model-00046-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0270727a399c553a602360b04bc1b5feaf09b22e12e3bb7eea5261801d4a1024
|
| 3 |
+
size 16990916912
|
model-00048-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:131e243c02cf2dc713de108edb8bfdb01c7ee28ce59d0a6615a630fb7cf0e4ae
|
| 3 |
+
size 16567507176
|
model-00049-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:72c91dcf2909ead55b6b5234e725227effbcd59fa5ce9f552e91c48d423cef0f
|
| 3 |
+
size 16990916912
|
model-00051-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:38a37bcec20abe1ddfaf68a636cd61cd291b71d554419a57736fd97d08a8cbff
|
| 3 |
+
size 16990916912
|
model-00053-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:413ec9ea0b693161c5e8a393a7a6be40a9f3c27114a919e1302fe94daeeee621
|
| 3 |
+
size 16990916912
|
model-00055-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e7c9f4e44f8ac95f73048078c406781fb0418831089fd2f7c55459887606204b
|
| 3 |
+
size 16990916912
|
model-00057-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e6982c96ac9101b75ab32c56568f5740ddae771acad29d92750b95aeeb3a7a30
|
| 3 |
+
size 16990916912
|
model-00058-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c93a23cbd6530391dcd9ce5617d24fb759e380f5ca676f83d00c8d6a9cda896f
|
| 3 |
+
size 16990916912
|
model-00059-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a62eb822071036421fa4aab662dafe3a3873b1b926378ebf489cddfd48a4d5de
|
| 3 |
+
size 16990916912
|
model-00060-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9bccbaa71b98f8526ca4c6cb091a489063ec4734c84bb5f6d11eeb0512360b5f
|
| 3 |
+
size 16567507176
|
model-00061-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1ae3969540fc676480804c37adc54df77e5ebb923952abb46d398b3a2d612e9d
|
| 3 |
+
size 16990916912
|
model-00062-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:96babdc24f2203eed68bd88f8534546696ab35bb1d0db7a5f15aaee295deee68
|
| 3 |
+
size 16990916912
|
model-00064-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:325c72d6ca5aaefd020da647ac317621903c8576a97d1de664b93638b7172f39
|
| 3 |
+
size 16567507176
|
model-00065-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:276d1cce1d8d494526938d878d4afb713ca379f98064dcd3c505325c954639db
|
| 3 |
+
size 16990916912
|
model-00067-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f0228892f8199c29c5053e7e5388a60dacf1458b53eb6f471e1f548f02478dd1
|
| 3 |
+
size 16990916912
|
model-00068-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fa75764056d16855c42baffd474bcc01045deda7ed5f773d88ff8887ea8458b6
|
| 3 |
+
size 16567507176
|
model-00070-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ab53464148721a209d4941dc3ab6f698574f913179e729726d00ed6232144893
|
| 3 |
+
size 16990916912
|
model-00075-of-000096.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8c6d7cb12f7c51aa88207c5b9410fccfa44e4a9022efc75d73c06054c1296c05
|
| 3 |
+
size 16990916912
|