Configuration Parsing Warning:In adapter_config.json: "peft.task_type" must be a string

emb-rag-qwen06b-indirect-rl

LoRA adapter for Qwen/Qwen3-Embedding-0.6B — Indirect-feedback RL (Ours, LR 1e-5, 10k queries).

Trained on multi-hop MuSiQue; evaluated on MuSiQue (in-domain) + 2WikiMultiHopQA, HotpotQA, NQ, TriviaQA (OOD).

Indirect feedback = the reward is a frozen reader LLM's answer success (log p(gold answer | query, retrieved context)) — no passage-level relevance labels. Rel-SFT = the direct-supervision baseline (contrastive InfoNCE on gold passages).

Full results (retrieval R@k + downstream RAG accuracy) and training scripts: https://irisicy4.github.io/exp-record/projects/indirect-rag/

from peft import PeftModel
from transformers import AutoModel, AutoTokenizer
base = AutoModel.from_pretrained("Qwen/Qwen3-Embedding-0.6B")
model = PeftModel.from_pretrained(base, "Icey444/emb-rag-qwen06b-indirect-rl").merge_and_unload()
tok = AutoTokenizer.from_pretrained("Icey444/emb-rag-qwen06b-indirect-rl")
Downloads last month
15
Video Preview
loading

Model tree for Icey444/emb-rag-qwen06b-indirect-rl

Adapter
(14)
this model