CoolFace
Modelpublic

Fred25022004/smartsearch-qwen3-vl-embedding-2b-lora-ckpt9905

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes8downloads
Model Card

SmartSearch Qwen3-VL-Embedding-2B LoRA (checkpoint-9905)

This repository contains an inference-focused LoRA adapter exported from local training checkpoint checkpoint-9905.

Model Details

  • —Base model: Qwen/Qwen3-VL-Embedding-2B
  • —Adapter type: LoRA (PEFT)
  • —Primary use: medical image embedding and image-label matching (EI vs ET)
  • —Training framework: Swift + PEFT (see args.json)

Files

  • —adapter_model.safetensors: LoRA adapter weights
  • —adapter_config.json: LoRA configuration
  • —additional_config.json: extra runtime config
  • —args.json: training/eval arguments snapshot

Evaluation Snapshot (checkpoint-9905)

Metrics below are from instruction-sweep best results in local logs (results/eiet_cls_instruction_sweep_ckpt9905_best_only):

DatasetAccuracyF1AUC
D010_RSNA0.71620.65530.7922
D027_NLMTB0.53750.11900.8223
D037_WCE0.77120.76990.9598
D043_UBIBC0.50500.00500.6227
D046_BUSBRA0.68120.00000.5651
D136_ChestXRay20170.37500.00000.6573
D153_OCTDL0.08130.02750.6422

Quick Start

python
from transformers import AutoModel, AutoProcessor
from peft import PeftModel

base_id = "Qwen/Qwen3-VL-Embedding-2B"
adapter_id = "Fred25022004/smartsearch-qwen3-vl-embedding-2b-lora-ckpt9905"

processor = AutoProcessor.from_pretrained(base_id, trust_remote_code=True)
base_model = AutoModel.from_pretrained(base_id, trust_remote_code=True)
model = PeftModel.from_pretrained(base_model, adapter_id)

Intended Use

  • —Research and benchmarking for medical image embedding/classification retrieval-style tasks.

Limitations

  • —This adapter is domain-tuned and may not generalize well outside medical imagery.
  • —Performance varies significantly by dataset/class balance.

License

This adapter should follow the base model terms and the dataset usage terms used in training/evaluation. Please verify compatibility before commercial use.