Fix wrong examples in llava usage. (#28020)

* Fix wrong examples in llava usage.

* Update modeling_llava.py
This commit is contained in:
Ligeng Zhu 2023-12-16 01:09:50 +08:00 committed by GitHub
parent 29a1c1b472
commit ffa04def0e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -370,12 +370,12 @@ class LlavaForConditionalGeneration(LlavaPreTrainedModel):
>>> url = "https://www.ilankelman.org/stopsigns/australia.jpg"
>>> image = Image.open(requests.get(url, stream=True).raw)
>>> inputs = processor(text=text, images=image, return_tensors="pt")
>>> inputs = processor(text=prompt, images=image, return_tensors="pt")
>>> # Generate
>>> generate_ids = model.generate(**inputs, max_length=30)
>>> tokenizer.batch_decode(generate_ids, skip_special_tokens=True, clean_up_tokenization_spaces=False)[0]
"There seems to be a stop sign"
>>> processor.batch_decode(generate_ids, skip_special_tokens=True, clean_up_tokenization_spaces=False)[0]
"\nUSER: What's the content of the image?\nASSISTANT: The image features a stop sign on a street corner"
```"""
output_attentions = output_attentions if output_attentions is not None else self.config.output_attentions