bio-nlp-umass/bioinstruct
Viewer • Updated • 25k • 393 • 24
How to use ELEUTO/bios-phaseA-clean-1778001925 with PEFT:
Base model is not found.
Configuration Parsing Warning:In adapter_config.json: "peft.base_model_name_or_path" must be a string
Qwen/Qwen3-4B-Instruct-2507 on bio-nlp-umass/bioinstruct
Trained via BIOS CLI.
| field | value |
|---|---|
| base model | Qwen/Qwen3-4B-Instruct-2507 |
| dataset | bio-nlp-umass/bioinstruct |
| examples | 50 |
| epochs | 3 |
| final loss | 112.3297 |
| checkpoint | 528b8402-bf22-5407-9d54-70ab1029b999:train:0/sampler_weights/bios-sft-1778001945 |
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>')
Base model
Qwen/Qwen3-4B-Instruct-2507