Text Generation
Transformers
Safetensors
glm4_moe
abliterated
derestricted
glm-4.6
unlimited
uncensored
conversational
Instructions to use guymy31/GLM-4.6-Derestricted-v3 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use guymy31/GLM-4.6-Derestricted-v3 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="guymy31/GLM-4.6-Derestricted-v3") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("guymy31/GLM-4.6-Derestricted-v3") model = AutoModelForCausalLM.from_pretrained("guymy31/GLM-4.6-Derestricted-v3", 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 guymy31/GLM-4.6-Derestricted-v3 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "guymy31/GLM-4.6-Derestricted-v3" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "guymy31/GLM-4.6-Derestricted-v3", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/guymy31/GLM-4.6-Derestricted-v3
- SGLang
How to use guymy31/GLM-4.6-Derestricted-v3 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 "guymy31/GLM-4.6-Derestricted-v3" \ --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": "guymy31/GLM-4.6-Derestricted-v3", "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 "guymy31/GLM-4.6-Derestricted-v3" \ --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": "guymy31/GLM-4.6-Derestricted-v3", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use guymy31/GLM-4.6-Derestricted-v3 with Docker Model Runner:
docker model run hf.co/guymy31/GLM-4.6-Derestricted-v3
Duplicate from ArliAI/GLM-4.6-Derestricted-v3
Browse filesCo-authored-by: Owen Arliawan <OwenArli@users.noreply.huggingface.co>
This view is limited to 50 files because it contains too many changes. See raw diff
- .gitattributes +36 -0
- README.md +113 -0
- chat_template.jinja +103 -0
- config.json +43 -0
- generation_config.json +11 -0
- model-00001-of-00092.safetensors +3 -0
- model-00002-of-00092.safetensors +3 -0
- model-00003-of-00092.safetensors +3 -0
- model-00004-of-00092.safetensors +3 -0
- model-00005-of-00092.safetensors +3 -0
- model-00006-of-00092.safetensors +3 -0
- model-00007-of-00092.safetensors +3 -0
- model-00008-of-00092.safetensors +3 -0
- model-00009-of-00092.safetensors +3 -0
- model-00010-of-00092.safetensors +3 -0
- model-00011-of-00092.safetensors +3 -0
- model-00012-of-00092.safetensors +3 -0
- model-00013-of-00092.safetensors +3 -0
- model-00014-of-00092.safetensors +3 -0
- model-00015-of-00092.safetensors +3 -0
- model-00016-of-00092.safetensors +3 -0
- model-00017-of-00092.safetensors +3 -0
- model-00018-of-00092.safetensors +3 -0
- model-00019-of-00092.safetensors +3 -0
- model-00020-of-00092.safetensors +3 -0
- model-00021-of-00092.safetensors +3 -0
- model-00022-of-00092.safetensors +3 -0
- model-00023-of-00092.safetensors +3 -0
- model-00024-of-00092.safetensors +3 -0
- model-00025-of-00092.safetensors +3 -0
- model-00026-of-00092.safetensors +3 -0
- model-00027-of-00092.safetensors +3 -0
- model-00028-of-00092.safetensors +3 -0
- model-00029-of-00092.safetensors +3 -0
- model-00030-of-00092.safetensors +3 -0
- model-00031-of-00092.safetensors +3 -0
- model-00032-of-00092.safetensors +3 -0
- model-00033-of-00092.safetensors +3 -0
- model-00034-of-00092.safetensors +3 -0
- model-00035-of-00092.safetensors +3 -0
- model-00036-of-00092.safetensors +3 -0
- model-00037-of-00092.safetensors +3 -0
- model-00038-of-00092.safetensors +3 -0
- model-00039-of-00092.safetensors +3 -0
- model-00040-of-00092.safetensors +3 -0
- model-00041-of-00092.safetensors +3 -0
- model-00042-of-00092.safetensors +3 -0
- model-00043-of-00092.safetensors +3 -0
- model-00044-of-00092.safetensors +3 -0
- model-00045-of-00092.safetensors +3 -0
.gitattributes
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 2 |
+
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 3 |
+
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 4 |
+
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 5 |
+
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
| 6 |
+
*.ftz filter=lfs diff=lfs merge=lfs -text
|
| 7 |
+
*.gz filter=lfs diff=lfs merge=lfs -text
|
| 8 |
+
*.h5 filter=lfs diff=lfs merge=lfs -text
|
| 9 |
+
*.joblib filter=lfs diff=lfs merge=lfs -text
|
| 10 |
+
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
| 11 |
+
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
| 12 |
+
*.model filter=lfs diff=lfs merge=lfs -text
|
| 13 |
+
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
| 14 |
+
*.npy filter=lfs diff=lfs merge=lfs -text
|
| 15 |
+
*.npz filter=lfs diff=lfs merge=lfs -text
|
| 16 |
+
*.onnx filter=lfs diff=lfs merge=lfs -text
|
| 17 |
+
*.ot filter=lfs diff=lfs merge=lfs -text
|
| 18 |
+
*.parquet filter=lfs diff=lfs merge=lfs -text
|
| 19 |
+
*.pb filter=lfs diff=lfs merge=lfs -text
|
| 20 |
+
*.pickle filter=lfs diff=lfs merge=lfs -text
|
| 21 |
+
*.pkl filter=lfs diff=lfs merge=lfs -text
|
| 22 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|
| 23 |
+
*.pth filter=lfs diff=lfs merge=lfs -text
|
| 24 |
+
*.rar filter=lfs diff=lfs merge=lfs -text
|
| 25 |
+
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 26 |
+
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
| 27 |
+
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
| 28 |
+
*.tar filter=lfs diff=lfs merge=lfs -text
|
| 29 |
+
*.tflite filter=lfs diff=lfs merge=lfs -text
|
| 30 |
+
*.tgz filter=lfs diff=lfs merge=lfs -text
|
| 31 |
+
*.wasm filter=lfs diff=lfs merge=lfs -text
|
| 32 |
+
*.xz filter=lfs diff=lfs merge=lfs -text
|
| 33 |
+
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
+
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
+
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,113 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
thumbnail: >-
|
| 4 |
+
https://cdn-uploads.huggingface.co/production/uploads/6625f4a8a8d1362ebcc3851a/iyzgR89q50pp1T8HeeP15.png
|
| 5 |
+
base_model:
|
| 6 |
+
- zai-org/GLM-4.6
|
| 7 |
+
pipeline_tag: text-generation
|
| 8 |
+
tags:
|
| 9 |
+
- abliterated
|
| 10 |
+
- derestricted
|
| 11 |
+
- glm-4.6
|
| 12 |
+
- unlimited
|
| 13 |
+
- uncensored
|
| 14 |
+
library_name: transformers
|
| 15 |
+
---
|
| 16 |
+
<div align="left">
|
| 17 |
+
<img src=https://cdn-uploads.huggingface.co/production/uploads/6625f4a8a8d1362ebcc3851a/iyzgR89q50pp1T8HeeP15.png width="5%"/>
|
| 18 |
+
</div>
|
| 19 |
+
|
| 20 |
+
# Arli AI
|
| 21 |
+
|
| 22 |
+
# GLM-4.6-Derestricted
|
| 23 |
+
|
| 24 |
+
<div align="center">
|
| 25 |
+
<img src=https://cdn-uploads.huggingface.co/production/uploads/6625f4a8a8d1362ebcc3851a/XhCz9N4liIwWEh-yH37gR.png width="15%"/>
|
| 26 |
+
</div>
|
| 27 |
+
|
| 28 |
+
GLM-4.6-Derestricted is a **Derestricted** version of [GLM-4.6](https://huggingface.co/cerebras/GLM-4.6), created by **[Arli AI](https://www.arliai.com)**.
|
| 29 |
+
|
| 30 |
+
Our goal with this release is to provide a version of the model that removed refusal behaviors while maintaining the high-performance reasoning of the original GLM-4.6. This is unlike regular abliteration which often inadvertently "lobotomizes" the model.
|
| 31 |
+
|
| 32 |
+
### Methodology: Norm-Preserving Biprojected Abliteration
|
| 33 |
+
|
| 34 |
+
To achieve this, **[Arli AI](https://www.arliai.com)** utilized **Norm-Preserving Biprojected Abliteration**, a refined technique pioneered by Jim Lai (grimjim). You can read the full technical breakdown [in this article](https://huggingface.co/blog/grimjim/norm-preserving-biprojected-abliteration).
|
| 35 |
+
|
| 36 |
+
**Why this matters:**
|
| 37 |
+
|
| 38 |
+
Standard abliteration works by simply subtracting a "refusal vector" from the model's weights. While this works to uncensor a model, it is mathematically unprincipled. It alters the **magnitude** (or "loudness") of the neurons, destroying the delicate feature norms the model learned during training. This damage is why many uncensored models suffer from degraded logic or hallucinations.
|
| 39 |
+
|
| 40 |
+
**How Norm-Preserving Biprojected Abliteration fixes it:**
|
| 41 |
+
|
| 42 |
+
This model was modified using a three-step approach that removes refusals without breaking the model's brain:
|
| 43 |
+
|
| 44 |
+
1. **Biprojection (Targeting):** We refined the refusal direction to ensure it is mathematically orthogonal to "harmless" directions. This ensures that when we cut out the refusal behavior, we do not accidentally cut out healthy, harmless concepts.
|
| 45 |
+
2. **Decomposition:** Instead of a raw subtraction, we decomposed the model weights into **Magnitude** and **Direction**.
|
| 46 |
+
3. **Norm-Preservation:** We removed the refusal component solely from the *directional* aspect of the weights, then recombined them with their **original magnitudes**.
|
| 47 |
+
|
| 48 |
+
**The Result:**
|
| 49 |
+
|
| 50 |
+
By preserving the weight norms, we maintain the "importance" structure of the neural network. Benchmarks suggest that this method avoids the "Safety Tax"—not only effectively removing refusals but potentially **improving reasoning capabilities** over the baseline, as the model is no longer wasting compute resources on suppressing its own outputs.
|
| 51 |
+
|
| 52 |
+
In fact, you may find surprising new knowledge and capabilities that the original model does not initially expose.
|
| 53 |
+
|
| 54 |
+
**Quantization:**
|
| 55 |
+
|
| 56 |
+
- Original: https://huggingface.co/ArliAI/GLM-4.6-Derestricted
|
| 57 |
+
- FP8: https://huggingface.co/ArliAI/GLM-4.6-Derestricted-FP8
|
| 58 |
+
- INT8: https://huggingface.co/ArliAI/GLM-4.6-Derestricted-W8A8-INT8
|
| 59 |
+
- W4A16: https://huggingface.co/ArliAI/GLM-4.6-Derestricted-GPTQ-W4A16
|
| 60 |
+
|
| 61 |
+
---
|
| 62 |
+
|
| 63 |
+
## Original model card:
|
| 64 |
+
|
| 65 |
+
-# GLM-4.6
|
| 66 |
+
|
| 67 |
+
<div align="center">
|
| 68 |
+
<img src=https://raw.githubusercontent.com/zai-org/GLM-4.5/refs/heads/main/resources/logo.svg width="15%"/>
|
| 69 |
+
</div>
|
| 70 |
+
<p align="center">
|
| 71 |
+
👋 Join our <a href="https://discord.gg/QR7SARHRxK" target="_blank">Discord</a> community.
|
| 72 |
+
<br>
|
| 73 |
+
📖 Check out the GLM-4.6 <a href="https://z.ai/blog/glm-4.6" target="_blank">technical blog</a>, <a href="https://arxiv.org/abs/2508.06471" target="_blank">technical report(GLM-4.5)</a>, and <a href="https://zhipu-ai.feishu.cn/wiki/Gv3swM0Yci7w7Zke9E0crhU7n7D" target="_blank">Zhipu AI technical documentation</a>.
|
| 74 |
+
<br>
|
| 75 |
+
📍 Use GLM-4.6 API services on <a href="https://docs.z.ai/guides/llm/glm-4.6">Z.ai API Platform. </a>
|
| 76 |
+
<br>
|
| 77 |
+
👉 One click to <a href="https://chat.z.ai">GLM-4.6</a>.
|
| 78 |
+
</p>
|
| 79 |
+
|
| 80 |
+
## Model Introduction
|
| 81 |
+
|
| 82 |
+
Compared with GLM-4.5, **GLM-4.6** brings several key improvements:
|
| 83 |
+
|
| 84 |
+
* **Longer context window:** The context window has been expanded from 128K to 200K tokens, enabling the model to handle more complex agentic tasks.
|
| 85 |
+
* **Superior coding performance:** The model achieves higher scores on code benchmarks and demonstrates better real-world performance in applications such as Claude Code、Cline、Roo Code and Kilo Code, including improvements in generating visually polished front-end pages.
|
| 86 |
+
* **Advanced reasoning:** GLM-4.6 shows a clear improvement in reasoning performance and supports tool use during inference, leading to stronger overall capability.
|
| 87 |
+
* **More capable agents:** GLM-4.6 exhibits stronger performance in tool using and search-based agents, and integrates more effectively within agent frameworks.
|
| 88 |
+
* **Refined writing:** Better aligns with human preferences in style and readability, and performs more naturally in role-playing scenarios.
|
| 89 |
+
|
| 90 |
+
We evaluated GLM-4.6 across eight public benchmarks covering agents, reasoning, and coding. Results show clear gains over GLM-4.5, with GLM-4.6 also holding competitive advantages over leading domestic and international models such as **DeepSeek-V3.1-Terminus** and **Claude Sonnet 4**.
|
| 91 |
+
|
| 92 |
+

|
| 93 |
+
|
| 94 |
+
## Inference
|
| 95 |
+
|
| 96 |
+
**Both GLM-4.5 and GLM-4.6 use the same inference method.**
|
| 97 |
+
|
| 98 |
+
you can check our [github](https://github.com/zai-org/GLM-4.5) for more detail.
|
| 99 |
+
|
| 100 |
+
## Recommended Evaluation Parameters
|
| 101 |
+
|
| 102 |
+
For general evaluations, we recommend using a **sampling temperature of 1.0**.
|
| 103 |
+
|
| 104 |
+
For **code-related evaluation tasks** (such as LCB), it is further recommended to set:
|
| 105 |
+
|
| 106 |
+
- `top_p = 0.95`
|
| 107 |
+
- `top_k = 40`
|
| 108 |
+
|
| 109 |
+
|
| 110 |
+
## Evaluation
|
| 111 |
+
|
| 112 |
+
- For tool-integrated reasoning, please refer to [this doc](https://github.com/zai-org/GLM-4.5/blob/main/resources/glm_4.6_tir_guide.md).
|
| 113 |
+
- For search benchmark, we design a specific format for searching toolcall in thinking mode to support search agent, please refer to [this](https://github.com/zai-org/GLM-4.5/blob/main/resources/trajectory_search.json). for the detailed template.
|
chat_template.jinja
ADDED
|
@@ -0,0 +1,103 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[gMASK]<sop>
|
| 2 |
+
{%- if tools -%}
|
| 3 |
+
<|system|>
|
| 4 |
+
# Tools
|
| 5 |
+
|
| 6 |
+
You may call one or more functions to assist with the user query.
|
| 7 |
+
|
| 8 |
+
You are provided with function signatures within <tools></tools> XML tags:
|
| 9 |
+
<tools>
|
| 10 |
+
{% for tool in tools %}
|
| 11 |
+
{{ tool | tojson(ensure_ascii=False) }}
|
| 12 |
+
{% endfor %}
|
| 13 |
+
</tools>
|
| 14 |
+
|
| 15 |
+
For each function call, output the function name and arguments within the following XML format:
|
| 16 |
+
<tool_call>{function-name}
|
| 17 |
+
<arg_key>{arg-key-1}</arg_key>
|
| 18 |
+
<arg_value>{arg-value-1}</arg_value>
|
| 19 |
+
<arg_key>{arg-key-2}</arg_key>
|
| 20 |
+
<arg_value>{arg-value-2}</arg_value>
|
| 21 |
+
...
|
| 22 |
+
</tool_call>{%- endif -%}
|
| 23 |
+
{%- macro visible_text(content) -%}
|
| 24 |
+
{%- if content is string -%}
|
| 25 |
+
{{- content }}
|
| 26 |
+
{%- elif content is iterable and content is not mapping -%}
|
| 27 |
+
{%- for item in content -%}
|
| 28 |
+
{%- if item is mapping and item.type == 'text' -%}
|
| 29 |
+
{{- item.text }}
|
| 30 |
+
{%- elif item is string -%}
|
| 31 |
+
{{- item }}
|
| 32 |
+
{%- endif -%}
|
| 33 |
+
{%- endfor -%}
|
| 34 |
+
{%- else -%}
|
| 35 |
+
{{- content }}
|
| 36 |
+
{%- endif -%}
|
| 37 |
+
{%- endmacro -%}
|
| 38 |
+
{%- set ns = namespace(last_user_index=-1) %}
|
| 39 |
+
{%- for m in messages %}
|
| 40 |
+
{%- if m.role == 'user' %}
|
| 41 |
+
{% set ns.last_user_index = loop.index0 -%}
|
| 42 |
+
{%- endif %}
|
| 43 |
+
{%- endfor %}
|
| 44 |
+
{% for m in messages %}
|
| 45 |
+
{%- if m.role == 'user' -%}<|user|>
|
| 46 |
+
{{ visible_text(m.content) }}
|
| 47 |
+
{{- '/nothink' if (enable_thinking is defined and not enable_thinking and not visible_text(m.content).endswith("/nothink")) else '' -}}
|
| 48 |
+
{%- elif m.role == 'assistant' -%}
|
| 49 |
+
<|assistant|>
|
| 50 |
+
{%- set reasoning_content = '' %}
|
| 51 |
+
{%- set content = visible_text(m.content) %}
|
| 52 |
+
{%- if m.reasoning_content is string %}
|
| 53 |
+
{%- set reasoning_content = m.reasoning_content %}
|
| 54 |
+
{%- else %}
|
| 55 |
+
{%- if '</think>' in content %}
|
| 56 |
+
{%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
|
| 57 |
+
{%- set content = content.split('</think>')[-1].lstrip('\n') %}
|
| 58 |
+
{%- endif %}
|
| 59 |
+
{%- endif %}
|
| 60 |
+
{%- if loop.index0 > ns.last_user_index and reasoning_content -%}
|
| 61 |
+
{{ '\n<think>' + reasoning_content.strip() + '</think>'}}
|
| 62 |
+
{%- else -%}
|
| 63 |
+
{{ '\n<think></think>' }}
|
| 64 |
+
{%- endif -%}
|
| 65 |
+
{%- if content.strip() -%}
|
| 66 |
+
{{ '\n' + content.strip() }}
|
| 67 |
+
{%- endif -%}
|
| 68 |
+
{% if m.tool_calls %}
|
| 69 |
+
{% for tc in m.tool_calls %}
|
| 70 |
+
{%- if tc.function %}
|
| 71 |
+
{%- set tc = tc.function %}
|
| 72 |
+
{%- endif %}
|
| 73 |
+
{{ '\n<tool_call>' + tc.name }}
|
| 74 |
+
{% set _args = tc.arguments %}
|
| 75 |
+
{% for k, v in _args.items() %}
|
| 76 |
+
<arg_key>{{ k }}</arg_key>
|
| 77 |
+
<arg_value>{{ v | tojson(ensure_ascii=False) if v is not string else v }}</arg_value>
|
| 78 |
+
{% endfor %}
|
| 79 |
+
</tool_call>{% endfor %}
|
| 80 |
+
{% endif %}
|
| 81 |
+
{%- elif m.role == 'tool' -%}
|
| 82 |
+
{%- if m.content is string -%}
|
| 83 |
+
{%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
|
| 84 |
+
{{- '<|observation|>' }}
|
| 85 |
+
{%- endif %}
|
| 86 |
+
{{- '\n<tool_response>\n' }}
|
| 87 |
+
{{- m.content }}
|
| 88 |
+
{{- '\n</tool_response>' }}
|
| 89 |
+
{%- else -%}
|
| 90 |
+
<|observation|>{% for tr in m.content %}
|
| 91 |
+
|
| 92 |
+
<tool_response>
|
| 93 |
+
{{ tr.output if tr.output is defined else tr }}
|
| 94 |
+
</tool_response>{% endfor -%}
|
| 95 |
+
{% endif -%}
|
| 96 |
+
{%- elif m.role == 'system' -%}
|
| 97 |
+
<|system|>
|
| 98 |
+
{{ visible_text(m.content) }}
|
| 99 |
+
{%- endif -%}
|
| 100 |
+
{%- endfor -%}
|
| 101 |
+
{%- if add_generation_prompt -%}
|
| 102 |
+
<|assistant|>{{- '\n<think></think>' if (enable_thinking is defined and not enable_thinking) else '' -}}
|
| 103 |
+
{%- endif -%}
|
config.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"Glm4MoeForCausalLM"
|
| 4 |
+
],
|
| 5 |
+
"attention_bias": true,
|
| 6 |
+
"attention_dropout": 0.0,
|
| 7 |
+
"pad_token_id": 151329,
|
| 8 |
+
"eos_token_id": [
|
| 9 |
+
151329,
|
| 10 |
+
151336,
|
| 11 |
+
151338
|
| 12 |
+
],
|
| 13 |
+
"head_dim": 128,
|
| 14 |
+
"hidden_act": "silu",
|
| 15 |
+
"hidden_size": 5120,
|
| 16 |
+
"partial_rotary_factor": 0.5,
|
| 17 |
+
"initializer_range": 0.02,
|
| 18 |
+
"intermediate_size": 12288,
|
| 19 |
+
"max_position_embeddings": 202752,
|
| 20 |
+
"model_type": "glm4_moe",
|
| 21 |
+
"moe_intermediate_size": 1536,
|
| 22 |
+
"norm_topk_prob": true,
|
| 23 |
+
"num_attention_heads": 96,
|
| 24 |
+
"n_group": 1,
|
| 25 |
+
"topk_group": 1,
|
| 26 |
+
"n_routed_experts": 160,
|
| 27 |
+
"n_shared_experts": 1,
|
| 28 |
+
"routed_scaling_factor": 2.5,
|
| 29 |
+
"num_experts_per_tok": 8,
|
| 30 |
+
"first_k_dense_replace": 3,
|
| 31 |
+
"num_hidden_layers": 92,
|
| 32 |
+
"num_key_value_heads": 8,
|
| 33 |
+
"rms_norm_eps": 1e-05,
|
| 34 |
+
"rope_scaling": null,
|
| 35 |
+
"rope_theta": 1000000,
|
| 36 |
+
"num_nextn_predict_layers": 1,
|
| 37 |
+
"tie_word_embeddings": false,
|
| 38 |
+
"torch_dtype": "bfloat16",
|
| 39 |
+
"transformers_version": "4.54.0",
|
| 40 |
+
"use_cache": true,
|
| 41 |
+
"use_qk_norm": true,
|
| 42 |
+
"vocab_size": 151552
|
| 43 |
+
}
|
generation_config.json
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_from_model_config": true,
|
| 3 |
+
"eos_token_id": [
|
| 4 |
+
151329,
|
| 5 |
+
151336,
|
| 6 |
+
151338
|
| 7 |
+
],
|
| 8 |
+
"pad_token_id": 151329,
|
| 9 |
+
"temperature": 1.0,
|
| 10 |
+
"transformers_version": "4.56.2"
|
| 11 |
+
}
|
model-00001-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e811e2ae0af3f8f5c78a4c44ef89a9f181e1b79e56d5860d6553b1f50918925a
|
| 3 |
+
size 2202060968
|
model-00002-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:559c2c6c327cd224abf66411c7ee013d215578bb9561b0d7b9312f09c7332158
|
| 3 |
+
size 650168352
|
model-00003-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8f93e05487c6b84c6893ba3967dc05137d31cf4fcf5e52af284513b395d04b10
|
| 3 |
+
size 650168352
|
model-00004-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4013dad7c73dc6f653ca25d189fdcf43910f67d52816c80fe4d33535ecf28860
|
| 3 |
+
size 7871313120
|
model-00005-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c9892dea94d1a8988bcd0f7b84cfaffc512cf9d67009667f2d69fd9da612158e
|
| 3 |
+
size 7871313120
|
model-00006-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f24c50465ebae0f5313014a7ad7f6c3899c52a95e5a651a353c2766e4b4e7298
|
| 3 |
+
size 7871313120
|
model-00007-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0a5190f7eec27e00e65f49a92835c258552950c11e2a62b04255a00d176109a9
|
| 3 |
+
size 7871313120
|
model-00008-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:25028914f40903d33035641cd25b947437115f27d19fe097cef49a4699c05d0c
|
| 3 |
+
size 7871313120
|
model-00009-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c091c8373a8b06bd2471d6d12ec87e0cd1d598a776c2b5d3396f5862960cb1e6
|
| 3 |
+
size 7871313120
|
model-00010-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:baa9934503854a2bf4c279d6f3806a911f7d63efe05b7ba8907c78f472dfc5e9
|
| 3 |
+
size 7871313120
|
model-00011-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:49923bf25b5655e42d3a9d3c685f0ac2a9372b84323be6942223716fef326bd6
|
| 3 |
+
size 7871313616
|
model-00012-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5f472cf4d544e7d3b3940de9248067e43b93985f2bf4d7b98910b22443aef70f
|
| 3 |
+
size 7871313616
|
model-00013-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a1f6a477a5fac9075fc54f412919ad721dc9196d3223fe15202e41173a8ba447
|
| 3 |
+
size 7871313616
|
model-00014-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:31fddd0d558a5e9b392980f25c5941b721d1b631f26664596fe00cc71651820e
|
| 3 |
+
size 7871313616
|
model-00015-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cddeb04f13a56a6a781f44048bd0d8a250adf34b17c3c098173cc3fdd864419e
|
| 3 |
+
size 7871313616
|
model-00016-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a6aa2577a4a8b5684ce6f4f49c1b4fb70aac88555b2c0367571efd328d6b9534
|
| 3 |
+
size 7871313616
|
model-00017-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:00a194a3db95979ba04e0cdaddb85ca76cbb360612a2c550f04bea7ecd632acb
|
| 3 |
+
size 7871313616
|
model-00018-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:29b6fd2128e8563cf20879d965b2c7b89ac1666edfcaef9332b1fbc5827ee2f0
|
| 3 |
+
size 7871313616
|
model-00019-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bc6c4804df6b1ea61d5b7bdf835e70f32d4df33d9a22d30be860b2cf71aae417
|
| 3 |
+
size 7871313616
|
model-00020-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e0248883e585ab1d592d0589999037e1c3f299b10e20ece7d5c30bd77e375da1
|
| 3 |
+
size 7871313616
|
model-00021-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8675a54477ce0675741a5fee9d062c0de78c3d0174e40a5d01de853ce53a6e4a
|
| 3 |
+
size 7871313616
|
model-00022-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ca1ae9a36b49cd3ecd25f8258b8d55ab0a1d1f7634fd273a0b548de5e9172acb
|
| 3 |
+
size 7871313616
|
model-00023-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8d58920a549dbf9887b8e1229863d0cf62227c336191ba76089ae0af6f091d37
|
| 3 |
+
size 7871313616
|
model-00024-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8ddfb6427a5cd06fae3e0d6d20b23ecc9662c1265ab3027832a18afc8755375a
|
| 3 |
+
size 7871313616
|
model-00025-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:29e84fa70097c818eb83ed3ad70fd58a7628921654352457e8e876a41875b077
|
| 3 |
+
size 7871313616
|
model-00026-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9f06573720920f17af9797e27b97b35873ad04236e1e8fcf7ac24eedeec1fe8b
|
| 3 |
+
size 7871313616
|
model-00027-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7a9e6c2c45bba638c8a86918c58abf30bd64e3576b4574205a5d579cc8aec5ee
|
| 3 |
+
size 7871313616
|
model-00028-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:88ce13a8c24e2bd8399f8e5fe13544119eb9715755a555a139bfd0bcfc9adbc0
|
| 3 |
+
size 7871313616
|
model-00029-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b2a6929628fd74f7f06d1984717a3c7b228c29480491e9b472f051e945c42f44
|
| 3 |
+
size 7871313616
|
model-00030-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:48e67c5d8167ab23d033825f02e06c1a38143319ae15d4031a7387d30f910c2f
|
| 3 |
+
size 7871313616
|
model-00031-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f7b9919bf5bb06e6a7518a8f1d495d7451b98b6ceadca9f94a6aefff456c90f6
|
| 3 |
+
size 7871313616
|
model-00032-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:72cbc78bb41b145ec5eabc41077fd9735520f5d4beedcd8dcd92d9c931fa0658
|
| 3 |
+
size 7871313616
|
model-00033-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:94bcabbe3fc44fe1185477b9ca627042133fb8805b7fe359ed04a58c6e17c0c9
|
| 3 |
+
size 7871313616
|
model-00034-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f25ad8df2106519ad1089a6b6e1005245590afe6e8e6321e5b48fbe88be31d62
|
| 3 |
+
size 7871313616
|
model-00035-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6783d9e0ada8fbfc04f6517b0596b2a9ce2b3faba152af513024a39d94a40ddd
|
| 3 |
+
size 7871313616
|
model-00036-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a86b0026698442aa717670dc36d1205d9884826acdeefb8335d87fa7131440d1
|
| 3 |
+
size 7871313616
|
model-00037-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a3ed6e2bfa43f2abd5ba7f3b4f3766a3e9d9ded83e70f40ad16fe95fb8976610
|
| 3 |
+
size 7871313616
|
model-00038-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:538cf554c43db0f919714db6a4601235a80246b3db6afbeae580d8b821ebd266
|
| 3 |
+
size 7871313616
|
model-00039-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ef201b710770c89d9b168e7d0b3370df97305ea16a5f8029d9a223b345490cd6
|
| 3 |
+
size 7871313616
|
model-00040-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c096c0f86a026995be6fa61751724c26958fa3e679ae85a1f6930078d20785b9
|
| 3 |
+
size 7871313616
|
model-00041-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6efd89e5a21ea826e6e2beba768643846ccf427e7fd7b80fc9a4606a15cdcb1b
|
| 3 |
+
size 7871313616
|
model-00042-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c1e9d6919eeacc81cf56c2baecc74429914eb4fbcb5816d49338445c69031ad6
|
| 3 |
+
size 7871313616
|
model-00043-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3b4e702d22676f13ed72897697fdca3bcfe1d4ebffc4c94c1d06edc461eae80f
|
| 3 |
+
size 7871313616
|
model-00044-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:626437e2eab23d3ca4cc132c2063d5ac34ff5478605b84aaf37a9e4e273d2add
|
| 3 |
+
size 7871313616
|
model-00045-of-00092.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1e853c8bbfb8a2364bd00c6496dee7e56f07e8adccef26dedefc1145476b3c0c
|
| 3 |
+
size 7871313616
|