Views
No views yet
1from gptqmodel import GPTQModel
2model = GPTQModel.from_quantized("namgyu-youn/Qwen3-8B-TEST-org", device="cuda:0")1from vllm import LLM
2llm = LLM(model="namgyu-youn/Qwen3-8B-TEST-org", dtype="float16")Perplexity (ppl; accuracy):
|Tasks|Version| Filter |n-shot| Metric | |Value | |Stderr|
|-----|------:|----------------|-----:|-----------|---|-----:|---|-----:|
|gsm8k| 3|flexible-extract| 5|exact_match|↑ |0.8535|± |0.0156|
| | |strict-match | 5|exact_match|↑ |0.6270|± |0.0214|
Throughput: 2.31 requests/s, 2659.53 total tokens/s, 295.50 output tokens/s1# Perplexity
2lm_eval --model vllm \
3 --model_args pretrained="namgyu-youn/Qwen3-8B-tenary",dtype=float16,gpu_memory_utilization=0.85,enable_thinking=False,max_gen_toks=2048,max_model_len=8192,enforce_eager=True \
4 --tasks gsm8k \
5 --limit 512 \
6 --output_path results \
7 --apply_chat_template \
8 --batch_size auto
9
10# Throughput
11vllm bench throughput \
12 --input-len 256 \
13 --output-len 256 \
14 --model namgyu-youn/Qwen3-8B-tenary \
15 --num-prompts 100 \
16 --max-model-len 4096 \
17 --enforce-eager