Views
No views yet
1base model: Qwen/Qwen3.5-9B
2adapter: XinyuGuan/CICLadapter_model.safetensors: LoRA adapter weights.adapter_config.json: PEFT adapter configuration, with Qwen/Qwen3.5-9B as the base model reference.tokenizer.json, tokenizer_config.json, chat_template.jinja: tokenizer and chat-format files used during evaluation.train_metrics.json, eval_field_report.json, selection_agreement_n20.json: aggregate training and evaluation summaries.1hf download XinyuGuan/CICL \
2 --local-dir artifacts/hf_release/cicl-qwen35-qlora-adapter1from transformers import AutoModelForCausalLM, AutoTokenizer
2from peft import PeftModel
3
4base_id = "Qwen/Qwen3.5-9B"
5adapter_id = "XinyuGuan/CICL"
6
7tokenizer = AutoTokenizer.from_pretrained(adapter_id, trust_remote_code=True)
8base = AutoModelForCausalLM.from_pretrained(
9 base_id,
10 trust_remote_code=True,
11 device_map="auto",
12)
13model = PeftModel.from_pretrained(base, adapter_id)qwen_local defaults to the Hugging Face base model and this adapter:1QWEN_LOCAL_BASE=Qwen/Qwen3.5-9B
2QWEN_LOCAL_ADAPTER=XinyuGuan/CICL1python3 -m cicl_agent.evaluation.llm_agreement_preflight \
2 --repo experiments/data/synthetic/v1/repo \
3 --tasks experiments/data/synthetic/v1/tasks.jsonl \
4 --teacher-examples artifacts/outputs/latest/synthetic_opus_v1/llm_examples.clean.jsonl \
5 --llm-provider qwen_local1PYTHONPATH=. CUDA_VISIBLE_DEVICES=0 python3 -m training.scripts.eval_qwen_judge \
2 --base Qwen/Qwen3.5-9B \
3 --adapter XinyuGuan/CICL \
4 --val training/data/opus_v1/val.jsonl \
5 --output artifacts/outputs/latest/qwen_local_eval/eval_field_report.jsoneval_field_report.json.Qwen/Qwen3.5-9B.