CoolFace
Modelpublic

ELEUTO/bios-phaseC-final-1778073780

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes5downloads
Model Card

BIOS-CLI fine-tuned LoRA — Qwen/Qwen3-4B-Instruct-2507 on bio-nlp-umass/bioinstruct

Trained via BIOS CLI.

Run details

fieldvalue
base modelQwen/Qwen3-4B-Instruct-2507
datasetbio-nlp-umass/bioinstruct
examples500
epochs3
final loss37.9436
checkpoint5e04f386-a16a-5245-ad4a-641870a94e06:train:0/sampler_weights/bios-sft-1778073817

Inference

python
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>')