Spaces:
Running
Running
File size: 9,272 Bytes
2a6a910 3b85b9a 2a6a910 3b85b9a a38ae12 2a6a910 3b85b9a 2a6a910 a38ae12 4d55ef2 2a6a910 a38ae12 3b85b9a a38ae12 2a6a910 01f9ab4 2a6a910 01f9ab4 2a6a910 3b85b9a 2a6a910 3b85b9a 2a6a910 3b85b9a 2a6a910 3b85b9a 2a6a910 3b85b9a 2a6a910 d7dfab0 aa16068 2a6a910 d7dfab0 aa16068 2a6a910 3b85b9a 2a6a910 2e7be44 2a6a910 2e7be44 2a6a910 3b85b9a 2a6a910 ef1cf40 2a6a910 3b85b9a 2a6a910 71a369c 2a6a910 ef1cf40 2a6a910 ef1cf40 2a6a910 0b05515 2a6a910 0b05515 2a6a910 3b85b9a 4a5f12f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 |
#!/usr/bin/env python
from __future__ import annotations
import os
import string
import gradio as gr
import PIL.Image
import torch
from transformers import AutoProcessor, Blip2ForConditionalGeneration
DESCRIPTION = '# [BLIP-2](https://github.com/salesforce/LAVIS/tree/main/projects/blip2)'
if (SPACE_ID := os.getenv('SPACE_ID')) is not None:
DESCRIPTION += f'\n<p>For faster inference without waiting in queue, you may duplicate the space and upgrade to GPU in settings. <a href="https://huggingface.co/spaces/{SPACE_ID}?duplicate=true"><img style="display: inline; margin-top: 0em; margin-bottom: 0em" src="https://bit.ly/3gLdBN6" alt="Duplicate Space" /></a></p>'
if not torch.cuda.is_available():
DESCRIPTION += '\n<p>Running on CPU 🥶 This demo does not work on CPU.</p>'
device = torch.device('cuda:0' if torch.cuda.is_available() else 'cpu')
MODEL_ID_OPT_6_7B = 'Salesforce/blip2-opt-6.7b'
MODEL_ID_FLAN_T5_XXL = 'Salesforce/blip2-flan-t5-xxl'
if torch.cuda.is_available():
model_dict = {
#MODEL_ID_OPT_6_7B: {
# 'processor':
# AutoProcessor.from_pretrained(MODEL_ID_OPT_6_7B),
# 'model':
# Blip2ForConditionalGeneration.from_pretrained(MODEL_ID_OPT_6_7B,
# device_map='auto',
# load_in_8bit=True),
#},
MODEL_ID_FLAN_T5_XXL: {
'processor':
AutoProcessor.from_pretrained(MODEL_ID_FLAN_T5_XXL),
'model':
Blip2ForConditionalGeneration.from_pretrained(MODEL_ID_FLAN_T5_XXL,
device_map='auto',
load_in_8bit=True),
}
}
else:
model_dict = {}
def generate_caption(model_id: str, image: PIL.Image.Image,
decoding_method: str, temperature: float,
length_penalty: float, repetition_penalty: float) -> str:
model_info = model_dict[model_id]
processor = model_info['processor']
model = model_info['model']
inputs = processor(images=image,
return_tensors='pt').to(device, torch.float16)
generated_ids = model.generate(
pixel_values=inputs.pixel_values,
do_sample=decoding_method == 'Nucleus sampling',
temperature=temperature,
length_penalty=length_penalty,
repetition_penalty=repetition_penalty,
max_length=50,
min_length=1,
num_beams=5,
top_p=0.9)
result = processor.batch_decode(generated_ids,
skip_special_tokens=True)[0].strip()
return result
def answer_question(model_id: str, image: PIL.Image.Image, text: str,
decoding_method: str, temperature: float,
length_penalty: float, repetition_penalty: float) -> str:
model_info = model_dict[model_id]
processor = model_info['processor']
model = model_info['model']
inputs = processor(images=image, text=text,
return_tensors='pt').to(device, torch.float16)
generated_ids = model.generate(**inputs,
do_sample=decoding_method ==
'Nucleus sampling',
temperature=temperature,
length_penalty=length_penalty,
repetition_penalty=repetition_penalty,
max_length=30,
min_length=1,
num_beams=5,
top_p=0.9)
result = processor.batch_decode(generated_ids,
skip_special_tokens=True)[0].strip()
return result
def postprocess_output(output: str) -> str:
if output and not output[-1] in string.punctuation:
output += '.'
return output
def chat(
model_id: str,
image: PIL.Image.Image,
text: str,
decoding_method: str,
temperature: float,
length_penalty: float,
repetition_penalty: float,
history_orig: list[str] = [],
history_qa: list[str] = [],
) -> tuple[dict[str, list[str]], dict[str, list[str]], dict[str, list[str]]]:
history_orig.append(text)
text_qa = f'Question: {text} Answer:'
history_qa.append(text_qa)
prompt = ' '.join(history_qa)
output = answer_question(
model_id,
image,
prompt,
decoding_method,
temperature,
length_penalty,
repetition_penalty,
)
output = postprocess_output(output)
history_orig.append(output)
history_qa.append(output)
chat_val = list(zip(history_orig[0::2], history_orig[1::2]))
return gr.update(value=chat_val), gr.update(value=history_orig), gr.update(
value=history_qa)
examples = [
[
'house.png',
'How could someone get out of the house?',
],
[
'flower.jpg',
'What is this flower and where is it\'s origin?',
],
[
'pizza.jpg',
'What are steps to cook it?',
],
[
'sunset.jpg',
'Here is a romantic message going along the photo:',
],
[
'forbidden_city.webp',
'In what dynasties was this place built?',
],
]
with gr.Blocks(css='style.css') as demo:
gr.Markdown(DESCRIPTION)
image = gr.Image(type='pil')
with gr.Accordion(label='Advanced settings', open=False):
with gr.Row():
model_id_caption = gr.Dropdown(
label='Model ID for image captioning',
choices=[MODEL_ID_OPT_6_7B, MODEL_ID_FLAN_T5_XXL],
value=MODEL_ID_FLAN_T5_XXL,
interactive=False,
visible=False)
model_id_chat = gr.Dropdown(
label='Model ID for VQA',
choices=[MODEL_ID_OPT_6_7B, MODEL_ID_FLAN_T5_XXL],
value=MODEL_ID_FLAN_T5_XXL,
interactive=False,
visible=False)
sampling_method = gr.Radio(
label='Text Decoding Method',
choices=['Beam search', 'Nucleus sampling'],
value='Beam search',
)
temperature = gr.Slider(
label='Temperature (used with nucleus sampling)',
minimum=0.5,
maximum=1.0,
value=1.0,
step=0.1,
)
length_penalty = gr.Slider(
label=
'Length Penalty (set to larger for longer sequence, used with beam search)',
minimum=-1.0,
maximum=2.0,
value=1.0,
step=0.2,
)
rep_penalty = gr.Slider(
label='Repeat Penalty (larger value prevents repetition)',
minimum=1.0,
maximum=5.0,
value=1.5,
step=0.5,
)
with gr.Row():
with gr.Column():
with gr.Box():
caption_button = gr.Button(value='Caption it!')
caption_output = gr.Textbox(
label='Caption Output',
show_label=False).style(container=False)
with gr.Column():
with gr.Box():
chatbot = gr.Chatbot(label='VQA Chat')
history_orig = gr.State(value=[])
history_qa = gr.State(value=[])
vqa_input = gr.Text(label='Chat Input',
show_label=False,
max_lines=1).style(container=False)
with gr.Row():
clear_chat_button = gr.Button(value='Clear')
chat_button = gr.Button(value='Submit')
gr.Examples(
examples=examples,
inputs=[
image,
vqa_input,
],
)
caption_button.click(
fn=generate_caption,
inputs=[
model_id_caption,
image,
sampling_method,
temperature,
length_penalty,
rep_penalty,
],
outputs=caption_output,
api_name='caption',
)
chat_inputs = [
model_id_chat,
image,
vqa_input,
sampling_method,
temperature,
length_penalty,
rep_penalty,
history_orig,
history_qa,
]
chat_outputs = [
chatbot,
history_orig,
history_qa,
]
vqa_input.submit(
fn=chat,
inputs=chat_inputs,
outputs=chat_outputs,
)
chat_button.click(
fn=chat,
inputs=chat_inputs,
outputs=chat_outputs,
api_name='chat',
)
clear_chat_button.click(
fn=lambda: ('', [], [], []),
inputs=None,
outputs=[
vqa_input,
chatbot,
history_orig,
history_qa,
],
queue=False,
api_name='clear',
)
image.change(
fn=lambda: ('', [], [], []),
inputs=None,
outputs=[
caption_output,
chatbot,
history_orig,
history_qa,
],
queue=False,
)
demo.queue(max_size=10).launch()
|