Instructions to use EganAI/Qwen3-4B-Instruct-2507-20250808-233922-0 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use EganAI/Qwen3-4B-Instruct-2507-20250808-233922-0 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="EganAI/Qwen3-4B-Instruct-2507-20250808-233922-0") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("EganAI/Qwen3-4B-Instruct-2507-20250808-233922-0") model = AutoModelForCausalLM.from_pretrained("EganAI/Qwen3-4B-Instruct-2507-20250808-233922-0") 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
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use EganAI/Qwen3-4B-Instruct-2507-20250808-233922-0 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "EganAI/Qwen3-4B-Instruct-2507-20250808-233922-0" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "EganAI/Qwen3-4B-Instruct-2507-20250808-233922-0", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/EganAI/Qwen3-4B-Instruct-2507-20250808-233922-0
- SGLang
How to use EganAI/Qwen3-4B-Instruct-2507-20250808-233922-0 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 "EganAI/Qwen3-4B-Instruct-2507-20250808-233922-0" \ --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": "EganAI/Qwen3-4B-Instruct-2507-20250808-233922-0", "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 "EganAI/Qwen3-4B-Instruct-2507-20250808-233922-0" \ --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": "EganAI/Qwen3-4B-Instruct-2507-20250808-233922-0", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use EganAI/Qwen3-4B-Instruct-2507-20250808-233922-0 with Docker Model Runner:
docker model run hf.co/EganAI/Qwen3-4B-Instruct-2507-20250808-233922-0
Qwen3-4B Merged - Configuration 0
This is a Qwen3-4B based model created through layer-wise merging of multiple fine-tuned variants to optimize performance on GPQA Diamond.
Performance Metrics
| Benchmark | Score | Description |
|---|---|---|
| MMLU (5-shot) | 0.7251 (72.51%) | Massive Multitask Language Understanding |
| GPQA Diamond (0-shot) | 0.4545 (45.45%) | Graduate-level Physics Q&A |
Benchmark Details
- MMLU: Evaluated on the test set with 5-shot prompting across 57 subjects
- GPQA: Evaluated on the diamond subset with 0-shot prompting on graduate-level physics questions
Performance Visualizations
GPQA Diamond Performance Comparison
MMLU and GPQA Diamond Combined Performance
Model Information
- Run ID: 20250808_233922
- Optimization Task: GPQA (Graduate-level Physics Q&A)
- Number of Layers: 36
- Base Architecture: Qwen3-4B
Source Models
The following models were used in the layer-wise merge:
- Qwen/Qwen3-4B-Instruct-2507
- Qwen/Qwen3-4B-Instruct-2507-FP8
- unsloth/Qwen3-4B-Instruct-2507
- huihui-ai/Huihui-Qwen3-4B-Instruct-2507-abliterated
- g-assismoraes/Qwen3-4B-Instruct-2507-imdb
- g-assismoraes/Qwen3-4B-Instruct-2507-assin2
- g-assismoraes/Qwen3-4B-Instruct-2507-faquad
- g-assismoraes/Qwen3-4B-Instruct-2507-hatebr
- g-assismoraes/Qwen3-4B-Instruct-2507-agnews
- BRlkl/BingoGuard-qwen3-4B-pt
Usage
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch
# Load the model
model = AutoModelForCausalLM.from_pretrained(
"EganAI/Qwen3-4B-Instruct-2507-20250808-233922-0",
torch_dtype=torch.float16,
device_map="auto"
)
tokenizer = AutoTokenizer.from_pretrained("EganAI/Qwen3-4B-Instruct-2507-20250808-233922-0")
# Example: MMLU-style question
prompt = '''Question: The study of the distribution and determinants of health and disease in populations is:
A) Epidemiology
B) Ecology
C) Etiology
D) Endocrinology
Answer:'''
inputs = tokenizer(prompt, return_tensors="pt")
outputs = model.generate(
**inputs,
max_length=150,
temperature=0.7,
do_sample=True
)
response = tokenizer.decode(outputs[0], skip_special_tokens=True)
print(response)
Inference with vLLM
from vllm import LLM, SamplingParams
llm = LLM(model="EganAI/Qwen3-4B-Instruct-2507-20250808-233922-1")
sampling_params = SamplingParams(temperature=0.7, top_p=0.95, max_tokens=256)
prompts = ["Question: Explain quantum entanglement in simple terms."]
outputs = llm.generate(prompts, sampling_params)
Technical Details
This model uses a layer-wise merging approach where each transformer layer is selected from different source models based on optimization criteria. This technique allows combining strengths from multiple fine-tuned models.
Merging Process
- Layer Selection: Each layer (0-35 for this architecture) is independently selected from one of the source models
- Non-layer Weights: Embeddings and final layers are taken from the base model
- Optimization: The configuration was found through systematic optimization on the target benchmark
Limitations
- This is an experimental merge and performance may vary on tasks outside the optimization targets
- The model inherits limitations from its source models
- Performance on general tasks may differ from benchmark scores
Citation
If you use this model, please cite the original source models and egan.ai
Note
This model is provided for research purposes. Always validate performance on your specific use case before deployment.
- Downloads last month
- 11
Model tree for EganAI/Qwen3-4B-Instruct-2507-20250808-233922-0
Dataset used to train EganAI/Qwen3-4B-Instruct-2507-20250808-233922-0
Evaluation results
- MMLU (5-shot) on MMLU (Massive Multitask Language Understanding)test set self-reported72.510
- GPQA Diamond (0-shot) on GPQA (Graduate-level Physics Q&A)test set self-reported45.450

