mirror of
https://github.com/huggingface/transformers.git
synced 2025-08-01 18:51:14 +06:00
Fix wrong examples in llava usage. (#28020)
* Fix wrong examples in llava usage. * Update modeling_llava.py
This commit is contained in:
parent
29a1c1b472
commit
ffa04def0e
@ -370,12 +370,12 @@ class LlavaForConditionalGeneration(LlavaPreTrainedModel):
|
|||||||
>>> url = "https://www.ilankelman.org/stopsigns/australia.jpg"
|
>>> url = "https://www.ilankelman.org/stopsigns/australia.jpg"
|
||||||
>>> image = Image.open(requests.get(url, stream=True).raw)
|
>>> 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
|
||||||
>>> generate_ids = model.generate(**inputs, max_length=30)
|
>>> generate_ids = model.generate(**inputs, max_length=30)
|
||||||
>>> tokenizer.batch_decode(generate_ids, skip_special_tokens=True, clean_up_tokenization_spaces=False)[0]
|
>>> processor.batch_decode(generate_ids, skip_special_tokens=True, clean_up_tokenization_spaces=False)[0]
|
||||||
"There seems to be a stop sign"
|
"\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
|
output_attentions = output_attentions if output_attentions is not None else self.config.output_attentions
|
||||||
|
Loading…
Reference in New Issue
Block a user