Views
No views yet

[!Important] The model do not have any export controls and restrictions.
Reasoning-Medical-27B reports 93.00% MedQA accuracy in the model card's 2-shot setup. The same table reports 84.40% for Qwen 3.6 27B, an absolute difference of 8.60 percentage points.pip install --upgrade "transformers>=5.2.0"In Google Colab or Jupyter Notebook, prefix the command with!:!pip install --upgrade "transformers>=5.2.0"
1pip install --upgrade sglang
2
3python3 -m sglang.launch_server \
4 --model-path "EpistemeAI/Reasoning-Medical-27B" \
5 --host 0.0.0.0 \
6 --port 30000http://localhost:300001pip install --upgrade vllm
2
3vllm serve "EpistemeAI/Reasoning-Medical-27B"http://localhost:8000/v11pip install -U openai
2
3# Set the following accordingly
4export OPENAI_BASE_URL="http://localhost:8000/v1"
5export OPENAI_API_KEY="EMPTY"[!Tip] We recommend using the following set of sampling parameters for generation
- Thinking mode for general tasks:
temperature=1.0, top_p=0.95, top_k=20, min_p=0.0, presence_penalty=0.0, repetition_penalty=1.0- Thinking mode for precise coding tasks (e.g. WebDev):
temperature=0.6, top_p=0.95, top_k=20, min_p=0.0, presence_penalty=0.0, repetition_penalty=1.0- Instruct (or non-thinking) mode:
temperature=0.7, top_p=0.80, top_k=20, min_p=0.0, presence_penalty=1.5, repetition_penalty=1.0Please note that the support for sampling parameters varies according to inference frameworks.
[!Important] Our models operate in thinking mode by default, generating thinking content signified by<think>\n...</think>\n\nbefore producing the final responses. To disable thinking content and obtain direct response, refer to the examples here.
1from openai import OpenAI
2# Configured by environment variables
3client = OpenAI()
4
5messages = [
6 {"role": "user", "content": "Chronic urethral obstruction due to benign prismatic hyperplasia can lead to the following change in kidney parenchyma"},
7]
8
9chat_response = client.chat.completions.create(
10 model="EpistemeAI/Reasoning-Medical-27B",
11 messages=messages,
12 max_tokens=81920,
13 temperature=1.0,
14 top_p=0.95,
15 presence_penalty=0.0,
16 extra_body={
17 "top_k": 20,
18 },
19)
20print("Chat response:", chat_response)1from openai import OpenAI
2# Configured by environment variables
3client = OpenAI()
4
5messages = [
6 {
7 "role": "user",
8 "content": [
9 {
10 "type": "image_url",
11 "image_url": {
12 "url": "https://qianwen-res.oss-accelerate.aliyuncs.com/Qwen3.5/demo/CI_Demo/mathv-1327.jpg"
13 }
14 },
15 {
16 "type": "text",
17 "text": "The centres of the four illustrated circles are in the corners of the square. The two big circles touch each other and also the two little circles. With which factor do you have to multiply the radii of the little circles to obtain the radius of the big circles?\nChoices:\n(A) $\\frac{2}{9}$\n(B) $\\sqrt{5}$\n(C) $0.8 \\cdot \\pi$\n(D) 2.5\n(E) $1+\\sqrt{2}$"
18 }
19 ]
20 }
21]
22
23chat_response = client.chat.completions.create(
24 model="EpistemeAI/Reasoning-Medical-27B",
25 messages=messages,
26 max_tokens=81920,
27 temperature=1.0,
28 top_p=0.95,
29 presence_penalty=0.0,
30 extra_body={
31 "top_k": 20,
32 },
33)
34print("Chat response:", chat_response)1from openai import OpenAI
2# Configured by environment variables
3client = OpenAI()
4
5messages = [
6 {
7 "role": "user",
8 "content": [
9 {
10 "type": "video_url",
11 "video_url": {
12 "url": "https://qianwen-res.oss-accelerate.aliyuncs.com/Qwen3.5/demo/video/N1cdUjctpG8.mp4"
13 }
14 },
15 {
16 "type": "text",
17 "text": "How many porcelain jars were discovered in the niches located in the primary chamber of the tomb?"
18 }
19 ]
20 }
21]
22
23# When vLLM is launched with `--media-io-kwargs '{"video": {"num_frames": -1}}'`,
24# video frame sampling can be configured via `extra_body` (e.g., by setting `fps`).
25# This feature is currently supported only in vLLM.
26#
27# By default, `fps=2` and `do_sample_frames=True`.
28# With `do_sample_frames=True`, you can customize the `fps` value to set your desired video sampling rate.
29chat_response = client.chat.completions.create(
30 model="EpistemeAI/Reasoning-Medical-27B",
31 messages=messages,
32 max_tokens=81920,
33 temperature=1.0,
34 top_p=0.95,
35 presence_penalty=0.0,
36 extra_body={
37 "top_k": 20,
38 "mm_processor_kwargs": {"fps": 2, "do_sample_frames": True},
39 },
40)
41
42print("Chat response:", chat_response)[!Important] Our model does not officially support the soft switch of Reasoning Medical 27B, i.e.,/thinkand/nothink.
1from openai import OpenAI
2# Configured by environment variables
3client = OpenAI()
4
5messages = [
6 {
7 "role": "user",
8 "content": [
9 {
10 "type": "image_url",
11 "image_url": {
12 "url": "https://qianwen-res.oss-accelerate.aliyuncs.com/Qwen3.6/demo/RealWorld/RealWorld-04.png"
13 }
14 },
15 {
16 "type": "text",
17 "text": "Where is this?"
18 }
19 ]
20 }
21]
22
23chat_response = client.chat.completions.create(
24 model="EpistemeAI/Reasoning-Medical-27B",
25 messages=messages,
26 max_tokens=32768,
27 temperature=0.7,
28 top_p=0.8,
29 presence_penalty=1.5,
30 extra_body={
31 "top_k": 20,
32 "chat_template_kwargs": {"enable_thinking": False},
33 },
34)
35print("Chat response:", chat_response)[!Note] If you are using APIs from Alibaba Cloud Model Studio, in addition to changingmodel, please use"enable_thinking": Falseinstead of"chat_template_kwargs": {"enable_thinking": False}.
preserve_thinking option:1from openai import OpenAI
2# Configured by environment variables
3client = OpenAI()
4
5messages = [...]
6
7chat_response = client.chat.completions.create(
8 model="EpistemeAI/Reasoning-Medical-27B",
9 messages=messages,
10 max_tokens=32768,
11 temperature=0.6,
12 top_p=0.95,
13 presence_penalty=0.0,
14 extra_body={
15 "top_k": 20,
16 "chat_template_kwargs": {"preserve_thinking": True},
17 },
18)
19print("Chat response:", chat_response)[!Note] If you are using APIs from Alibaba Cloud Model Studio, in addition to changingmodel, please use"preserve_thinking": Trueinstead of"chat_template_kwargs": {"preserve_thinking": False}.
1import os
2from qwen_agent.agents import Assistant
3
4# Define LLM
5# Using Alibaba Cloud Model Studio
6llm_cfg = {
7 # Use the OpenAI-compatible model service provided by DashScope:
8 'model': 'EpistemeAI/Reasoning-Medical-27B',
9 'model_type': 'qwenvl_oai',
10 'model_server': 'https://dashscope.aliyuncs.com/compatible-mode/v1',
11 'api_key': os.getenv('DASHSCOPE_API_KEY'),
12
13 'generate_cfg': {
14 'use_raw_api': True,
15 # When using Dash Scope OAI API, pass the parameter of whether to enable thinking mode in this way
16 'extra_body': {
17 'enable_thinking': True,
18 'preserve_thinking': True,
19 },
20 },
21}
22
23# Using OpenAI-compatible API endpoint.
24# functionality of the deployment frameworks and let Qwen-Agent automate the related operations.
25#
26# llm_cfg = {
27# # Use your own model service compatible with OpenAI API by vLLM/SGLang:
28# 'model': 'EpistemeAI/Reasoning-Medical-27B',
29# 'model_type': 'qwenvl_oai',
30# 'model_server': 'http://localhost:8000/v1', # api_base
31# 'api_key': 'EMPTY',
32#
33# 'generate_cfg': {
34# 'use_raw_api': True,
35# # When using vLLM/SGLang OAI API, pass the parameter of whether to enable thinking mode in this way
36# 'extra_body': {
37# 'chat_template_kwargs': {'enable_thinking': True, 'preserve_thinking': True}
38# },
39# },
40# }
41
42# Define Tools
43tools = [
44 {'mcpServers': { # You can specify the MCP configuration file
45 "filesystem": {
46 "command": "npx",
47 "args": ["-y", "@modelcontextprotocol/server-filesystem", "/Users/xxxx/Desktop"]
48 }
49 }
50 }
51]
52
53# Define Agent
54bot = Assistant(llm=llm_cfg, function_list=tools)
55
56# Streaming generation
57messages = [{'role': 'user', 'content': 'Help me organize my desktop.'}]
58for responses in bot.run(messages=messages):
59 pass
60print(responses)
61
62# Streaming generation
63messages = [{'role': 'user', 'content': 'Develop a dog website and save it on the desktop'}]
64for responses in bot.run(messages=messages):
65 pass
66print(responses)transformers, vllm, ktransformers and sglang.
In general, there are two approaches to enabling YaRN for supported frameworks:config.json file, change the rope_parameters fields in text_config to:1{
2 "mrope_interleaved": true,
3 "mrope_section": [
4 11,
5 11,
6 10
7 ],
8 "rope_type": "yarn",
9 "rope_theta": 10000000,
10 "partial_rotary_factor": 0.25,
11 "factor": 4.0,
12 "original_max_position_embeddings": 262144,
13}vllm, you can useVLLM_ALLOW_LONG_MAX_MODEL_LEN=1 vllm serve ... --hf-overrides '{"text_config": {"rope_parameters": {"mrope_interleaved": true, "mrope_section": [11, 11, 10], "rope_type": "yarn", "rope_theta": 10000000, "partial_rotary_factor": 0.25, "factor": 4.0, "original_max_position_embeddings": 262144}}}' --max-model-len 1010000 sglang and ktransformers, you can useSGLANG_ALLOW_OVERWRITE_LONGER_CONTEXT_LEN=1 python -m sglang.launch_server ... --json-model-override-args '{"text_config": {"rope_parameters": {"mrope_interleaved": true, "mrope_section": [11, 11, 10], "rope_type": "yarn", "rope_theta": 10000000, "partial_rotary_factor": 0.25, "factor": 4.0, "original_max_position_embeddings": 262144}}}' --context-length 1010000[!NOTE] All the notable open-source frameworks implement static YaRN, which means the scaling factor remains constant regardless of input length, potentially impacting performance on shorter texts. We advise modifying therope_parametersconfiguration only when processing long contexts is required. It is also recommended to modify thefactoras needed. For example, if the typical context length for your application is 524,288 tokens, it would be better to setfactoras 2.0.
temperature=1.0, top_p=0.95, top_k=20, min_p=0.0, presence_penalty=0.0, repetition_penalty=1.0temperature=0.6, top_p=0.95, top_k=20, min_p=0.0, presence_penalty=0.0, repetition_penalty=1.0temperature=0.7, top_p=0.80, top_k=20, min_p=0.0, presence_penalty=1.5, repetition_penalty=1.0presence_penalty parameter between 0 and 2 to reduce endless repetitions. However, using a higher value may occasionally result in language mixing and a slight decrease in model performance.answer field with only the choice letter, e.g., "answer": "C"."size parameter in the released video_preprocessor_config.json is conservatively configured. It is recommended to set the longest_edge parameter in the video_preprocessor_config file to 469,762,048 (corresponding to 224k video tokens) to enable higher frame-rate sampling for hour-scale videos and thereby achieve superior performance. For example,{"longest_edge": 469762048, "shortest_edge": 4096}| Rank | Model or System | Score | Source |
|---|---|---|---|
| 1 | Reasoning Medical 27B | 0.560 | EpistemeAI evaluation |
| 2 | GPT 5.5 | 0.518 | External evaluation |
| 3 | Opus 4.8 | 0.512 | External evaluation |
| 4 | Kimi-K2.6 | 0.503 | External evaluation |
| 5 | GPT-5.4 | 0.481 | Official HealthBench Professional paper |
| 6 | Claude Opus 4.7 | 0.470 | Official HealthBench Professional paper |
| 7 | GPT-5 | 0.462 | Official HealthBench Professional paper |
| 8 | GPT-5.2 | 0.459 | Official HealthBench Professional paper |
| 9 | Gemini 3.1 Pro | 0.438 | Official HealthBench Professional paper |
| 10 | Physician-written baseline | 0.437 | Official HealthBench Professional paper |
| 11 | Grok 4.20 | 0.361 | Official HealthBench Professional paper |

| Rank | Model | Parameters | MedQA accuracy | Reported protocol |
|---|---|---|---|---|
| 1 | EpistemeAI/Reasoning-Medical-27B | 27B | 93.00% | 2-shot; accuracy reported on the model card |
| 2 | Med-Gemini | Not disclosed | 91.10% | Uncertainty-guided web-search strategy |
| 3 | MedGemma 27B | 27B | 89.80% | Best-of-5 test-time scaling |
| 4 | Med-PaLM 2 | Not disclosed | 86.50% | Best reported MedQA-specific instruction-tuned variant |
| 5 | Qwen 3.6 27B | 27B | 84.40% | 2-shot; reported in the EpistemeAI model-card comparison |
| 6 | Med42-v2-70B | 70B | 79.10% | Zero-shot; EleutherAI evaluation harness |
| 7 | OpenBioLLM-70B | 70B | 76.90% | Zero-shot re-evaluation reported by the Med42 team |
| 8 | MEDITRON-70B | 70B | 70.20% | MedQA four-option; task fine-tuning and self-consistency CoT |
| 9 | Med-PaLM | Not disclosed | 67.20% | Instruction prompt tuning with chain-of-thought and self-consistency |
| 10 | MedGemma 4B | 4B | 64.40% | Reported MedQA four-option evaluation |
| 11 | Med42-v2-8B | 8B | 62.84% | Zero-shot; EleutherAI evaluation harness |
| 12 | ClinicalCamel-70B | 70B | 53.40% | Zero-shot re-evaluation reported by the Med42 team |