Text Generation
Transformers
Safetensors
hy_v3
hunyuan
hy3
Mixture of Experts
conversational
Eval Results
Instructions to use tencent/Hy3 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tencent/Hy3 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="tencent/Hy3") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("tencent/Hy3") model = AutoModelForCausalLM.from_pretrained("tencent/Hy3", 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]:])) - Inference
- HuggingChat
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use tencent/Hy3 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "tencent/Hy3" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "tencent/Hy3", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/tencent/Hy3
- SGLang
How to use tencent/Hy3 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 "tencent/Hy3" \ --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": "tencent/Hy3", "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 "tencent/Hy3" \ --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": "tencent/Hy3", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use tencent/Hy3 with Docker Model Runner:
docker model run hf.co/tencent/Hy3
Add files using upload-large-folder tool
Browse files- model-00001-of-00099.safetensors +3 -0
- model-00002-of-00099.safetensors +3 -0
- model-00003-of-00099.safetensors +3 -0
- model-00004-of-00099.safetensors +3 -0
- model-00005-of-00099.safetensors +3 -0
- model-00006-of-00099.safetensors +3 -0
- model-00007-of-00099.safetensors +3 -0
- model-00008-of-00099.safetensors +3 -0
- model-00010-of-00099.safetensors +3 -0
- model-00015-of-00099.safetensors +3 -0
- model-00016-of-00099.safetensors +3 -0
- model-00018-of-00099.safetensors +3 -0
- model-00019-of-00099.safetensors +3 -0
- model-00020-of-00099.safetensors +3 -0
- model-00021-of-00099.safetensors +3 -0
- model-00022-of-00099.safetensors +3 -0
- model-00024-of-00099.safetensors +3 -0
- model-00028-of-00099.safetensors +3 -0
- model-00031-of-00099.safetensors +3 -0
- model-00036-of-00099.safetensors +3 -0
- model-00038-of-00099.safetensors +3 -0
- model-00039-of-00099.safetensors +3 -0
- model-00042-of-00099.safetensors +3 -0
- model-00044-of-00099.safetensors +3 -0
- model-00045-of-00099.safetensors +3 -0
- model-00046-of-00099.safetensors +3 -0
- model-00047-of-00099.safetensors +3 -0
- model-00048-of-00099.safetensors +3 -0
- model-00051-of-00099.safetensors +3 -0
- model-00052-of-00099.safetensors +3 -0
- model-00054-of-00099.safetensors +3 -0
- model-00058-of-00099.safetensors +3 -0
- model-00059-of-00099.safetensors +3 -0
- model-00060-of-00099.safetensors +3 -0
- model-00062-of-00099.safetensors +3 -0
- model-00063-of-00099.safetensors +3 -0
- model-00066-of-00099.safetensors +3 -0
- model-00071-of-00099.safetensors +3 -0
- model-00073-of-00099.safetensors +3 -0
- model-00075-of-00099.safetensors +3 -0
- model-00077-of-00099.safetensors +3 -0
- model-00079-of-00099.safetensors +3 -0
- model-00080-of-00099.safetensors +3 -0
- model-00082-of-00099.safetensors +3 -0
- model-00085-of-00099.safetensors +3 -0
- model-00086-of-00099.safetensors +3 -0
- model-00090-of-00099.safetensors +3 -0
- model-00091-of-00099.safetensors +3 -0
- model-00092-of-00099.safetensors +3 -0
- model-00097-of-00099.safetensors +3 -0
model-00001-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:66c9811c1a6f3a8c89e0e252b5991ee0112c8b6dd91a0a06c7863dc6c0200c16
|
| 3 |
+
size 7247829008
|
model-00002-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:438bfdf0685abb46abf98d83b0abec150096f68951ad61af60fe5cbd9c915ac7
|
| 3 |
+
size 7247829584
|
model-00003-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0112623ad063ea80a559d4ba02b72877a7d9cfe7fd80f57448efad0c006309e6
|
| 3 |
+
size 7247829584
|
model-00004-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b289f1c54b9645d03a3acb93e0af23b9c897cd38a389db1a601170e5ae2302e3
|
| 3 |
+
size 7247829584
|
model-00005-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7fdc11262b41aceaf68aefbda84088a909dc2d1344781315b50763ad457b0d60
|
| 3 |
+
size 7247829584
|
model-00006-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c63adc9dcbaebef3c6876a95b966f2880b3259f28e89093316299ac23499445e
|
| 3 |
+
size 1073745312
|
model-00007-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:768a4a6797d0f18d3658db19256dc837b9bf8207be5853d1e534aac4fe2dc9b4
|
| 3 |
+
size 7247829008
|
model-00008-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e1a02ea7da3ae3fa4feea8d4b31ab15f88b73d33b9789691b9a7310710ae7c28
|
| 3 |
+
size 7247829584
|
model-00010-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9bd6929f27a8bea148d20d709e82762b3593767ac5604be4a91e11c498249827
|
| 3 |
+
size 7247829584
|
model-00015-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d3e7c4360e3782e60bd4e43b029e66818a2bbd513794d34503e0c7ceaecd1b92
|
| 3 |
+
size 7247829584
|
model-00016-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1547e4a234524ee22e45155bf18a763e5a7ad3bcfd19fce86ee1332131ca9510
|
| 3 |
+
size 7247829584
|
model-00018-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f69f7c228609cfb2c994c86fd5ec33cbc792cf38c0e399e7ff6a35b7267b0a48
|
| 3 |
+
size 1073746912
|
model-00019-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:20e4912b081ddf058497e07a00a76715cf7d58a108020528dd9469a0d0971d24
|
| 3 |
+
size 7247829008
|
model-00020-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:09bcddf356c7098e82688d818a331f36a10973a67184c8430832271882035487
|
| 3 |
+
size 7247829584
|
model-00021-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f9de5be0d34f3fad73d011e6c73c5da89b2813c03e52c61cb2ed0391beeb27b2
|
| 3 |
+
size 7247829584
|
model-00022-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e6682fe3970c95511dc7e25c96394a0adf1b6cedc227613f2902e6a960dae0bb
|
| 3 |
+
size 7247829584
|
model-00024-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e6da22a75d48894da525c85b3bc41748e4d68dc214a8d4e828239835b22da646
|
| 3 |
+
size 1067458192
|
model-00028-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dcd50b4691e61a45a06f0a8c7a461e71de1e6fe55951ba23439eba90a764fa03
|
| 3 |
+
size 7247829584
|
model-00031-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d2e0f20db6780b593af07b38158163df6af4ccd76f35b6506dead303f60730a7
|
| 3 |
+
size 7247829008
|
model-00036-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8f27a414abc0c63d17dd384efc22d6f567d9dd717132834e055a05a015fcbaf4
|
| 3 |
+
size 1057352200
|
model-00038-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5b0a8a47f60b4471bdb316d4019f14cd6361d4e69619ff52d0ba03246278de3f
|
| 3 |
+
size 7247829584
|
model-00039-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e32ce985b17809bc2702adfff736c4dba28162dd3c014b356e7903e0ef32cae5
|
| 3 |
+
size 7247829584
|
model-00042-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:50841884bd8a563a18ae65c946031fb7bde5efaf4cd76cbd2206a3befa4a804d
|
| 3 |
+
size 1056967864
|
model-00044-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8f5dfcc9a31b58f575f9f76d413aaff20ae71ff007f6a914082bd448ffbe5d9c
|
| 3 |
+
size 7247829584
|
model-00045-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d54a762394c124e668f9591ce11f687caaa9d63ea986f95ffb11ca193ceed30a
|
| 3 |
+
size 7247829584
|
model-00046-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f55efa5a664c30feb1fb4af46a2e66a94108503bb94be83556ce83108bd36072
|
| 3 |
+
size 7247829584
|
model-00047-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d69560d12733fcf336ed95f0cad384ab16e81860f279b9a1f224678ba931d2a5
|
| 3 |
+
size 7247829584
|
model-00048-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f3729f6082a9561adb9b928b031932f2557ec816969ffc149a486a397c3224a9
|
| 3 |
+
size 1056970080
|
model-00051-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b7a20ebe5ebd20110fcc3fa706b1e566251789576acfb995b745692a1d51c5fd
|
| 3 |
+
size 7247829584
|
model-00052-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:02e3d60ff8119880710b89d77cb2596c8e8c19a8d0e7507868c499550bc5bf2b
|
| 3 |
+
size 7247829584
|
model-00054-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aa0063d2c568025e1607cc5ccb61df7b30f709649a555e6e04616e6efc00ab69
|
| 3 |
+
size 1044248192
|
model-00058-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7aa6fdb3fe9f64a15bf56c88f3af7f4706dab2e2fc15471500b9428575f19953
|
| 3 |
+
size 7247829584
|
model-00059-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:60607138f7b787dce726ae9260f16c818e14b17d72009032a8c8a89a3bead758
|
| 3 |
+
size 7247829584
|
model-00060-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2c4af2ec97cd385d3bb39c6d205649ae065464453b6e18b2196e967df29498c1
|
| 3 |
+
size 1023412144
|
model-00062-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:077581d7e50ed66d7aa07374ffafd8f2fba7242784a699327398598df7863eb0
|
| 3 |
+
size 7247829584
|
model-00063-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:42331fbf601acc1c01759f6ea2a1de4ac39f37db9596030a835014e8da866a99
|
| 3 |
+
size 7247829584
|
model-00066-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:53f8091d391170df1df036b4d30573f4d6f034b9817d1a27e84fe6c25c8f772c
|
| 3 |
+
size 1023412968
|
model-00071-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2ca2080a0ecdb4577a524da958e92a32d08a64a06f4d87ac8f9de107da332eff
|
| 3 |
+
size 7247829584
|
model-00073-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2ef6e71631b0aa2082dbc1e5f432fa52630bde4e2ef1ee4ee109430be39ec2cb
|
| 3 |
+
size 7247829584
|
model-00075-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:95f9c9e7c3714be48b5aeb1e28f89acf3574d58de1309fc19dd7142b71e6530b
|
| 3 |
+
size 7247829584
|
model-00077-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:90a6025210b10dcdc3913bf77910a356e247c7f85b1b5f3b27bb1bc25c7de57c
|
| 3 |
+
size 7247829584
|
model-00079-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7ab3f7c380930c5cb4c201db572a227b9b51c7aec68ad2cebc9c0318469a60bc
|
| 3 |
+
size 7247829584
|
model-00080-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fa88c8d580b6d34037797d2227ef6613a131c425812714d679f50475230296c3
|
| 3 |
+
size 7247829584
|
model-00082-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:079663edde841be589c83727adeea7f1848df06b918673bab132c655d804f41f
|
| 3 |
+
size 7247829584
|
model-00085-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fba0d519dcd860fc30ab5c217b494f4b7d3a39c4fe96e505e0daad04e76b18b5
|
| 3 |
+
size 7247829584
|
model-00086-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e08078c79bccc4897acd8758f3280d9b60fd11da903b168e5e35dc7353582020
|
| 3 |
+
size 7247829584
|
model-00090-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cfed48109271c715475e91dd43c5a3bef46d3a750bb1459a27c5706d08ee93fc
|
| 3 |
+
size 998247464
|
model-00091-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:827012bb0331458343834e70c3c5965f74fc0e7dbbe57f8532a8049b4461454f
|
| 3 |
+
size 305501032
|
model-00092-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e5e134ff65937e48afc145bcf36e616234a7da3d9d30a57e182dc0b14e9dc750
|
| 3 |
+
size 7247829584
|
model-00097-of-00099.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:312f30e146520c52a6cfad4da37e44a46f8d5cdcc39337d2c1df42de82fa5f1f
|
| 3 |
+
size 2415943208
|