update readme
Browse files
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-
|
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)
|