ELEUTO/bios-phaseC-final-1778073780
05
BIOS-CLI fine-tuned LoRA — Qwen/Qwen3-4B-Instruct-2507 on bio-nlp-umass/bioinstruct
Trained via BIOS CLI.
Run details
Inference
from peft import PeftModel
from transformers import AutoModelForCausalLM, AutoTokenizer
base = AutoModelForCausalLM.from_pretrained('Qwen/Qwen3-4B-Instruct-2507')
tok = AutoTokenizer.from_pretrained('Qwen/Qwen3-4B-Instruct-2507')
# replace `<your-repo>` with this repo's id
model = PeftModel.from_pretrained(base, '<your-repo>')