Views
No views yet
<CAPTION_TO_PHRASE_GROUNDING>.Khabner/florence-base-lora-v1 (84%) at ×3–4 inference cost.no points) — all other variants pass this test. A narrow regression introduced by the v1 LoRA training on Florence-2-large specifically.[3]).1from peft import PeftModel
2from transformers import AutoModelForCausalLM, AutoProcessor
3
4base = AutoModelForCausalLM.from_pretrained("microsoft/Florence-2-large-ft", trust_remote_code=True)
5processor = AutoProcessor.from_pretrained("microsoft/Florence-2-large-ft", trust_remote_code=True)
6model = PeftModel.from_pretrained(base, "Khabner/florence-large-lora-v1").eval()