Views
No views yet
1from transformers import Qwen3VLForConditionalGeneration, AutoProcessor
2from peft import PeftModel
3
4# Load base model
5base_model = Qwen3VLForConditionalGeneration.from_pretrained(
6 "Qwen/Qwen3-VL-8B-Thinking",
7 torch_dtype="auto",
8 device_map="auto"
9)
10
11# Load LoRA adapter
12model = PeftModel.from_pretrained(base_model, "shan1984/PancCADx-DPO")
13processor = AutoProcessor.from_pretrained("shan1984/PancCADx-DPO")| Metric | Value |
|---|---|
| Sensitivity | 95.74% |
| Specificity | 77.78% |
| Accuracy | 89.53% |
1@inproceedings{hu2026panccadx,
2 title={PancCADx: A Multimodal Framework for Pancreatic Cancer Diagnosis},
3 author={Hu, Shan and Xiao, Changhong and Qin, Xianzheng and Mei, Bin and Cheng, Bin and Wang, Zhongyuan},
4 booktitle={MICCAI},
5 year={2026}
6}