RaushanTurganbay HF staff commited on
Commit
87307ce
·
verified ·
1 Parent(s): 7089dad

update for chat template

Browse files
Files changed (1) hide show
  1. README.md +19 -0
README.md CHANGED
@@ -95,6 +95,25 @@ output = model.generate(**inputs, max_new_tokens=100)
95
  print(processor.decode(output[0], skip_special_tokens=True))
96
  ```
97
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  ### Model optimization
99
 
100
  #### 4-bit quantization through `bitsandbytes` library
 
95
  print(processor.decode(output[0], skip_special_tokens=True))
96
  ```
97
 
98
+ -----------
99
+ From transformers>=v4.48, you can also pass image url or local path to the conversation history, and let the chat template handle the rest.
100
+ Chat template will load the image for you and return inputs in `torch.Tensor` which you can pass directly to `model.generate()`
101
+
102
+ ```python
103
+ messages = [
104
+ {
105
+ "role": "user",
106
+ "content": [
107
+ {"type": "image", "url": "https://www.ilankelman.org/stopsigns/australia.jpg"}
108
+ {"type": "text", "text": "What is shown in this image?"},
109
+ ],
110
+ },
111
+ ]
112
+
113
+ inputs = processor.apply_chat_template(messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors"pt")
114
+ output = model.generate(**inputs, max_new_tokens=50)
115
+ ```
116
+
117
  ### Model optimization
118
 
119
  #### 4-bit quantization through `bitsandbytes` library