Views
No views yet
1from transformers import AutoProcessor, AutoModelForCausalLM
2from peft import PeftModel
3
4processor = AutoProcessor.from_pretrained("Sarvesh2003/florence2-price-prediction-epoch19", trust_remote_code=True)
5model = AutoModelForCausalLM.from_pretrained("Sarvesh2003/florence2-price-prediction-epoch19", trust_remote_code=True)