初始化项目,由ModelHub XC社区提供模型
Model: Pinkstack/DistilGPT-OSS-qwen3-4B-Q8_O-GGUF Source: Original Platform
This commit is contained in:
36
.gitattributes
vendored
Normal file
36
.gitattributes
vendored
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.arrow filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bin filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.ftz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.h5 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.joblib filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.model filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.npy filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.npz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.onnx filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.ot filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.parquet filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.pb filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.pickle filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.pkl filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.pt filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.pth filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.rar filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
||||||
|
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tar filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tflite filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.wasm filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zst filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
||||||
|
llm2-q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
||||||
50
README.md
Normal file
50
README.md
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
---
|
||||||
|
license: apache-2.0
|
||||||
|
base_model:
|
||||||
|
- Pinkstack/DistilGPT-OSS-qwen3-4B
|
||||||
|
pipeline_tag: text-generation
|
||||||
|
tags:
|
||||||
|
- cot
|
||||||
|
- code
|
||||||
|
- gpt_oss
|
||||||
|
- conversational
|
||||||
|
- distillation
|
||||||
|
- math
|
||||||
|
---
|
||||||
|
This is a official q8_0 quantized version of https://huggingface.co/Pinkstack/DistilGPT-OSS-qwen3-4B
|
||||||
|

|
||||||
|
|
||||||
|
# What it is
|
||||||
|
Distil-gpt-oss-qwen3-4B is a Qwen3 4B-2507 thinking fine tune, it supports up to **256K** tokens of input and output (aka total context) and can think for up to **65536** tokens when set to **high** reasoning effort. unlike the original qwen3, this model was fine-tuned on GPT-OSS reasoning outputs (unlike Deepseek r1 outputs which qwen3 was probably fine-tuned on for advanced reasoning). By fine-tuning on GPT-OSS outputs, the model was able to learn how to think efficiently, follow instructions better, and the new ability to think with a certain effort based on how much you want it to think.
|
||||||
|
|
||||||
|
⚠️This model is NOT as censored as the original GPT-OSS, we focused on performance rather than censorship. The model is still safety trained, it would just allow for more *"creative"* prompts, unlike GPT-OSS. We are not responsible for what the model generates.
|
||||||
|
|
||||||
|
Keep in mind, this is a community project and we are NOT related to qwen by Alibaba nor GPT-OSS by OpenAi.
|
||||||
|
|
||||||
|
# Format
|
||||||
|
This is the chat format of this model (you can also check the Jinja template file in "Files and versions"):
|
||||||
|
```
|
||||||
|
<|im_start|>system
|
||||||
|
You are a helpful assistant
|
||||||
|
|
||||||
|
|
||||||
|
Reasoning effort: low<|im_end|>
|
||||||
|
<|im_start|>user
|
||||||
|
Continue the fibonnaci sequence: 1, 1, 2, 3, 5, 8,<|im_end|>
|
||||||
|
<|im_start|>assistant
|
||||||
|
<think>
|
||||||
|
Just continue: 13,21,34,...
|
||||||
|
</think>
|
||||||
|
The Fibonacci sequence continues by adding the two preceding numbers.
|
||||||
|
After **8** the next term is **13** (1 + 8 = 9 – 1 = 8 + 5 = 13), then **21** (8 + 13 = 21), followed by **34** (13 + 21 = 34), and so on.
|
||||||
|
|
||||||
|
So the sequence starts:
|
||||||
|
|
||||||
|
**1, 1, 2, 3, 5, 8, 13, 21, 34, …**<|im_end|>
|
||||||
|
```
|
||||||
|
|
||||||
|
As you can see, you set the reasoning effort via the system prompt. We recommend going **2** lines down and only then putting "Reasoning effort: [low,medium,high]. For your information that output was generated by our model.
|
||||||
|
|
||||||
|
# Additional information
|
||||||
|
|
||||||
|
The model was trained using unsloth, using a mix of private datasets and public datasets.
|
||||||
3
llm2-q8_0.gguf
Normal file
3
llm2-q8_0.gguf
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:38138d71b6a8537a0577978eeb4d31472413ded557f2b107f85828ef08f203f4
|
||||||
|
size 4280400448
|
||||||
Reference in New Issue
Block a user