UncleFish commited on
Commit
786e833
1 Parent(s): 1203f03

update readme

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -42,7 +42,7 @@ class EosListStoppingCriteria(StoppingCriteria):
42
  return self.eos_sequence in last_ids
43
 
44
  # load models
45
- model_name_or_path = "Salesforce/blip3-phi3-3b-instruct-r-v1"
46
  model = AutoModelForVision2Seq.from_pretrained(model_name_or_path, trust_remote_code=True)
47
  tokenizer = AutoTokenizer.from_pretrained(model_name_or_path, trust_remote_code=True, use_fast=False, legacy=False)
48
  image_processor = AutoImageProcessor.from_pretrained(model_name_or_path, trust_remote_code=True)
 
42
  return self.eos_sequence in last_ids
43
 
44
  # load models
45
+ model_name_or_path = "Salesforce/blip3-phi3-mini-instruct-r-v1"
46
  model = AutoModelForVision2Seq.from_pretrained(model_name_or_path, trust_remote_code=True)
47
  tokenizer = AutoTokenizer.from_pretrained(model_name_or_path, trust_remote_code=True, use_fast=False, legacy=False)
48
  image_processor = AutoImageProcessor.from_pretrained(model_name_or_path, trust_remote_code=True)