update for chat template
Browse files
README.md
CHANGED
@@ -115,6 +115,25 @@ output = model.generate(**inputs, max_new_tokens=200, do_sample=False)
|
|
115 |
print(processor.decode(output[0][2:], skip_special_tokens=True))
|
116 |
```
|
117 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
### Model optimization
|
119 |
|
120 |
#### 4-bit quantization through `bitsandbytes` library
|
|
|
115 |
print(processor.decode(output[0][2:], skip_special_tokens=True))
|
116 |
```
|
117 |
|
118 |
+
-----------
|
119 |
+
From transformers>=v4.48, you can also pass image/video url or local path to the conversation history, and let the chat template handle the rest.
|
120 |
+
Chat template will load the image for you and return inputs in `torch.Tensor` which you can pass directly to `model.generate()`
|
121 |
+
|
122 |
+
```python
|
123 |
+
messages = [
|
124 |
+
{
|
125 |
+
"role": "user",
|
126 |
+
"content": [
|
127 |
+
{"type": "image", "url": "https://www.ilankelman.org/stopsigns/australia.jpg"}
|
128 |
+
{"type": "text", "text": "What is shown in this image?"},
|
129 |
+
],
|
130 |
+
},
|
131 |
+
]
|
132 |
+
|
133 |
+
inputs = processor.apply_chat_template(messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors"pt")
|
134 |
+
output = model.generate(**inputs, max_new_tokens=50)
|
135 |
+
```
|
136 |
+
|
137 |
### Model optimization
|
138 |
|
139 |
#### 4-bit quantization through `bitsandbytes` library
|