Text Generation
Transformers
Safetensors
English
qwen3
Mixture of Experts
text-generation-inference
code
deepscale
math
conversational
Instructions to use prithivMLmods/Segue-Qwen3_DeepScaleR-Preview with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use prithivMLmods/Segue-Qwen3_DeepScaleR-Preview with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="prithivMLmods/Segue-Qwen3_DeepScaleR-Preview") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("prithivMLmods/Segue-Qwen3_DeepScaleR-Preview") model = AutoModelForCausalLM.from_pretrained("prithivMLmods/Segue-Qwen3_DeepScaleR-Preview", 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 prithivMLmods/Segue-Qwen3_DeepScaleR-Preview with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "prithivMLmods/Segue-Qwen3_DeepScaleR-Preview" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "prithivMLmods/Segue-Qwen3_DeepScaleR-Preview", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/prithivMLmods/Segue-Qwen3_DeepScaleR-Preview
- SGLang
How to use prithivMLmods/Segue-Qwen3_DeepScaleR-Preview 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 "prithivMLmods/Segue-Qwen3_DeepScaleR-Preview" \ --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": "prithivMLmods/Segue-Qwen3_DeepScaleR-Preview", "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 "prithivMLmods/Segue-Qwen3_DeepScaleR-Preview" \ --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": "prithivMLmods/Segue-Qwen3_DeepScaleR-Preview", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use prithivMLmods/Segue-Qwen3_DeepScaleR-Preview with Docker Model Runner:
docker model run hf.co/prithivMLmods/Segue-Qwen3_DeepScaleR-Preview
| license: apache-2.0 | |
| datasets: | |
| - agentica-org/DeepScaleR-Preview-Dataset | |
| base_model: | |
| - Qwen/Qwen3-4B | |
| language: | |
| - en | |
| pipeline_tag: text-generation | |
| library_name: transformers | |
| tags: | |
| - moe | |
| - text-generation-inference | |
| - code | |
| - deepscale | |
| - math | |
|  | |
| # Segue-Qwen3\_DeepScaleR-Preview | |
| > Segue-Qwen3\_DeepScaleR-Preview is an experimental fine-tuned variant of the Qwen3-4B model architecture. It is trained on the DeepScaleR-Preview dataset—comprising high-quality mathematical reasoning problems—to achieve exceptional performance in symbolic, mathematical, and logical tasks with lightweight computational requirements. | |
| ## Key Features | |
| 1. Precision Reasoning with DeepScaleR-Preview Dataset | |
| Fine-tuned on approximately 40,000 curated math problem-answer pairs sourced from: | |
| * AIME (1984–2023) | |
| * AMC (pre-2023) | |
| * Omni-MATH | |
| This enables superior symbolic manipulation and step-by-step logical deduction. | |
| 2. Lightweight Code Understanding | |
| Capable of interpreting and generating correct code in Python, C++, and other logic-intensive languages with an emphasis on problem-solving and structured thought. | |
| 3. Structured Output Formatting | |
| Outputs are designed to be well-formatted in Markdown, JSON, LaTeX, or tables—ideal for technical documentation, math notebooks, and data workflows. | |
| 4. Instruction-Following Accuracy | |
| Strong multi-step instruction adherence, particularly for STEM domains. Ensures continuity, factual correctness, and process transparency in reasoning chains. | |
| 5. Multilingual Capabilities | |
| Supports over 20 languages for mathematical and logical reasoning, technical instruction translation, and cross-lingual academic support. | |
| 6. Efficient 4B Architecture | |
| Built on the Qwen3-4B base model to balance performance and scalability. Runs efficiently on mid-range GPUs while delivering high-accuracy inference. | |
| ## Quickstart with Transformers | |
| ```python | |
| from transformers import AutoModelForCausalLM, AutoTokenizer | |
| model_name = "prithivMLmods/Segue-Qwen3_DeepScaleR-Preview" | |
| model = AutoModelForCausalLM.from_pretrained( | |
| model_name, | |
| torch_dtype="auto", | |
| device_map="auto" | |
| ) | |
| tokenizer = AutoTokenizer.from_pretrained(model_name) | |
| prompt = "Solve for x: 5(x - 2) = 3x + 4, showing all steps clearly." | |
| messages = [ | |
| {"role": "system", "content": "You are a precise mathematical assistant trained on DeepScaleR-Preview dataset."}, | |
| {"role": "user", "content": prompt} | |
| ] | |
| text = tokenizer.apply_chat_template( | |
| messages, | |
| tokenize=False, | |
| add_generation_prompt=True | |
| ) | |
| model_inputs = tokenizer([text], return_tensors="pt").to(model.device) | |
| generated_ids = model.generate( | |
| **model_inputs, | |
| max_new_tokens=512 | |
| ) | |
| generated_ids = [ | |
| output_ids[len(input_ids):] for input_ids, output_ids in zip(model_inputs.input_ids, generated_ids) | |
| ] | |
| response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0] | |
| print(response) | |
| ``` | |
| ## Intended Use | |
| * Step-by-step mathematical problem solving | |
| * Symbolic computation and logic derivation | |
| * Code generation and correction in technical environments | |
| * Automated LaTeX/Markdown/JSON generation for education and documentation | |
| * Academic tutoring and educational assistants | |
| * Multilingual reasoning and translation of structured content | |
| ## Limitations | |
| * Less suitable for open-domain conversation or creative writing | |
| * Smaller context window compared to large-scale LLMs | |
| * May be sensitive to token formatting in edge-case symbolic prompts | |
| * Could underperform on intentionally adversarial logic inputs | |
| ## References | |
| 1. Qwen2.5 Technical Report – [https://arxiv.org/pdf/2412.15115](https://arxiv.org/pdf/2412.15115) | |
| 2. YaRN: Context Window Extension for LLMs – [https://arxiv.org/pdf/2309.00071](https://arxiv.org/pdf/2309.00071) |