CoolFace
Modelpublic

prithivMLmods/Q3.5-9B-DS-v4-Flash-v2.0

sourceHugging Faceapache-2.0updated 3mo agoView on Hugging Face
3likes23downloads
Model Card

1

Q3.5-9B-DS-v4-Flash-v2.0

Q3.5-9B-DS-v4-Flash-v2.0 is a reasoning-capable 9B-parameter language model built on top of Qwen/Qwen3.5-9B. The model was trained through a multi-stage training pipeline using approximately 3K long-context DeepSeek V4 Flash reasoning traces, along with additional high-quality reasoning traces, to improve long-form reasoning, mathematical problem solving, scientific analysis, and instruction-following capabilities.
[!NOTE] This model is an experimental release and may generate unexpected behaviors or reasoning artifacts in certain scenarios.

Key Highlights

  • —Qwen 3.5 Foundation: Built directly on top of Qwen/Qwen3.5-9B.
  • —Multi-Stage Training: Trained through multiple stages to progressively improve reasoning performance.
  • —Long-Context Reasoning: Incorporates approximately 3K long-context DeepSeek V4 Flash reasoning traces spanning mathematics, science, coding, and complex analytical tasks.
  • —General Reasoning Enhancement: Further trained on additional high-quality reasoning traces to strengthen instruction following and multi-step reasoning.
  • —Research-Focused Release: Designed for reasoning research, experimentation, and evaluation.
  • —Efficient 9B Deployment: Suitable for local inference and research environments.

Quick Start with Transformers

bash
pip install transformers
pip install accelerate
python
from transformers import AutoTokenizer, AutoModelForCausalLM
import torch

model = AutoModelForCausalLM.from_pretrained(
    "prithivMLmods/Q3.5-9B-DS-v4-Flash-v2.0",
    torch_dtype="auto",
    device_map="auto"
)

tokenizer = AutoTokenizer.from_pretrained(
    "prithivMLmods/Q3.5-9B-DS-v4-Flash-v2.0"
)

messages = [
    {
        "role": "user",
        "content": "Explain how a transformer model processes text."
    }
]

inputs = tokenizer.apply_chat_template(
    messages,
    tokenize=True,
    add_generation_prompt=True,
    return_tensors="pt"
).to(model.device)

outputs = model.generate(
    inputs,
    max_new_tokens=512
)

print(
    tokenizer.decode(
        outputs[0][inputs.shape[-1]:],
        skip_special_tokens=True
    )
)

Training Details

SettingValue
Base ModelQwen/Qwen3.5-9B
Training MethodMulti-stage Supervised Fine-Tuning (SFT)
Maximum Sequence Length32,768 tokens (Long Context)
Training PrecisionBF16 (Full Precision)
Training & Alignment FrameworkTRL
Training DatasetsJackrong/DeepSeek-V4-Distill-8000x, sequelbox/Titanium4-DeepSeek-V4-Pro, and additional high-quality reasoning datasets

Model Files

ResourceLink
Transformers ModelprithivMLmods/Q3.5-9B-DS-v4-Flash-v2.0
GGUF (llama.cpp Quantizations)https://huggingface.co/prithivMLmods/Q3.5-9B-DS-v4-Flash-v2.0-GGUF

Intended Use

  • —Reasoning Research: Studying long-context reasoning and multi-stage training techniques.
  • —Mathematical Reasoning: Solving complex mathematical problems with multi-step reasoning.
  • —Scientific Reasoning: Performing structured scientific analysis and problem solving.
  • —Coding Assistance: Improving code understanding and generation through long-context reasoning.
  • —Instruction Following: Evaluating and improving instruction-following capabilities.
  • —Local Deployment: Running efficient 9B reasoning models in research and experimentation environments.

Limitations

  • —Experimental Model: Behavior may differ from the base model in certain scenarios.
  • —Reasoning Artifacts: Complex reasoning chains may occasionally produce incorrect intermediate steps or conclusions.
  • —Training Biases: Performance reflects the characteristics and coverage of the reasoning datasets used during training.

Acknowledgements

  • —[Qwen/Qwen3.5-9B](https://huggingface.co/Qwen/Qwen3.5-9B): Base model used for this project.
  • —TRL - [Transformers Reinforcement Learning](https://huggingface.co/docs/trl/en/index): TRL is a full stack library providing tools to train transformer language models with methods including Supervised Fine-Tuning (SFT), Group Relative Policy Optimization (GRPO), Direct Preference Optimization (DPO), Reward Modeling, and more.
  • —[Transformers](https://huggingface.co/docs/transformers/en/index): Transformers provides state-of-the-art machine learning models for text, computer vision, audio, video, and multimodal tasks, supporting both inference and training.