Views
No views yet
OpenPipe/Qwen3-14B-Instruct, trained for chest CT report generation
within the RadAgent pipeline. Note the source code for using RadAgent within its toolbox environment will be released in due time.OpenPipe/Qwen3-14B-InstructOpenPipe/Qwen3-14B-Instructq_projk_projv_projo_proj1from transformers import AutoModelForCausalLM, AutoTokenizer
2from peft import PeftModel
3import torch
4
5base_model = "OpenPipe/Qwen3-14B-Instruct"
6adapter_repo = "RadAgent/radagent-qwen3-14b-lora"
7
8tokenizer = AutoTokenizer.from_pretrained(base_model, trust_remote_code=True)
9model = AutoModelForCausalLM.from_pretrained(
10 base_model,
11 torch_dtype=torch.bfloat16,
12 device_map="auto",
13 trust_remote_code=True,
14)
15model = PeftModel.from_pretrained(model, adapter_repo)1python agents/main_ct_rate.py \
2--model_name='OpenPipe/Qwen3-14B-Instruct' \
3--mode='val' \
4--task='report_generation' \
5--batch_size=128 \
6--start_id=0 \
7--end_id=1000 \
8--inference_model_name='RadAgent/radagent-qwen3-14b-lora' \
9--agent_type='v8c' \
10--do_check_summaryOpenPipe/Qwen3-14B-Instruct and remains subject to the license terms, usage restrictions, and access conditions of the base model.1@misc{roschewitz2026radagenttoolusingaiagent,
2 title={RadAgent: A tool-using AI agent for stepwise interpretation of chest computed tomography},
3 author={Mélanie Roschewitz and Kenneth Styppa and Yitian Tao and Jiwoong Sohn and Jean-Benoit Delbrouck and Benjamin Gundersen and Nicolas Deperrois and Christian Bluethgen and Julia Vogt and Bjoern Menze and Farhad Nooralahzadeh and Michael Krauthammer and Michael Moor},
4 year={2026},
5 eprint={2604.15231},
6 archivePrefix={arXiv},
7 primaryClass={cs.AI},
8 url={https://arxiv.org/abs/2604.15231},
9}