idefics2_playground / comparative_app.py
VictorSanh's picture
cleanup with transformers integration
fd388f6
raw history blame
No virus
13.4 kB
import copy
import os
import random
# import spaces
import subprocess
import time
import torch
from threading import Thread
from typing import List, Dict, Union
from urllib.parse import urlparse
from PIL import Image
import gradio as gr
from transformers import AutoProcessor, TextIteratorStreamer
from transformers import Idefics2ForConditionalGeneration
# subprocess.run('pip install flash-attn --no-build-isolation', env={'FLASH_ATTENTION_SKIP_CUDA_BUILD': "TRUE"}, shell=True)
DEVICE = torch.device("cuda")
MODELS = {
"tr_288_cinco_final_sft_sphinx_11000": Idefics2ForConditionalGeneration.from_pretrained(
"HuggingFaceM4/idefics2-tfrm-compatible",
torch_dtype=torch.bfloat16,
_attn_implementation="flash_attention_2",
trust_remote_code=True,
token=os.environ["HF_AUTH_TOKEN"],
revision="2e56f9030ba9a17b6ebcd1c9ad5311d5fad0115f",
).to(DEVICE),
"tr_290_bis_288_cinco_chatty_150": Idefics2ForConditionalGeneration.from_pretrained(
"HuggingFaceM4/idefics2-tfrm-compatible",
torch_dtype=torch.bfloat16,
_attn_implementation="flash_attention_2",
trust_remote_code=True,
token=os.environ["HF_AUTH_TOKEN"],
revision="3dc93be345d64fb6b1c550a233fe87ddb36f183d",
).to(DEVICE),
}
PROCESSOR = AutoProcessor.from_pretrained(
"HuggingFaceM4/idefics2-tfrm-compatible",
token=os.environ["HF_AUTH_TOKEN"],
)
BAD_WORDS_IDS = PROCESSOR.tokenizer(["<image>", "<fake_token_around_image>"], add_special_tokens=False).input_ids
EOS_WORDS_IDS = PROCESSOR.tokenizer("<end_of_utterance>", add_special_tokens=False).input_ids + [PROCESSOR.tokenizer.eos_token_id]
SYSTEM_PROMPT = [ # Deactivating the system propmpt for now, but if I were to reactivate it, I would need to a/ transform turns into dict for applying the chat template, b/ manually overwrite the `default_template` to add the first line (that is not part of any turns), in particular for handling the bos_token.
# """The following is a conversation between a highly knowledgeable and intelligent visual AI assistant, called Assistant, and a human user, called User. In the following interactions, User and Assistant will converse in natural language, and Assistant will do its best to answer User’s questions. Assistant has the ability to perceive images and reason about the content of visual inputs. Assistant was built to be respectful, polite and inclusive. It knows a lot, and always tells the truth. When prompted with an image, it does not make up facts.
# The conversation begins:""",
# """\nUser:""",
# "https://i1.pickpik.com/photos/515/906/355/kittens-cats-pet-cute-preview.jpg",
# "Describe this image.<end_of_utterance>",
# """\nAssistant: Five kittens are standing together in the center of the photograph. From the left to right, there is one orange kitten, two kittens white and black stripes, and two brown kittens with an orange head. They are in bright green grass and it looks like they are moving forward.<end_of_utterance>""",
# "\nUser:How about this image?",
# "https://cdn.pixabay.com/photo/2017/09/25/13/12/puppy-2785074_1280.jpg",
# "Can you describe it too?<end_of_utterance>",
# """\nAssistant: A dog is lying on the floor, looking at the camera. It is looking directly at you. The dog has a white body and brown patches on its face and ears. Its eyes are dark. Its nose is black, and it has long, floppy ears, white paws, long fur, big eyes.<end_of_utterance>""",
# "\nUser: What kind of breed is it?<end_of_utterance>",
# """\nAssistant: It looks like a Cavalier King Charles Spaniel. These breeds are known for their gentle, affectionate nature. Their long ears and big, brown eyes give them a sweet, expressive face. Cavaliers are small dogs weighing between 13 and 20 pounds. They have a silky, medium-length coat that comes in various colors, including black and tan, tricolor, red and white, or black.<end_of_utterance>""",
# "\nUser: What can you tell me about this breed of dogs?<end_of_utterance>",
# """\nAssistant: One specific characteristic of the Cavalier King Charles Spaniel is its friendly and affectionate nature. This breed is known for being extremely sociable and forming strong bonds with their owners. They are often described as "velcro dogs" because they love to be close to their human companions, whether it's sitting on their laps, cuddling on the couch, or simply following them around the house.<end_of_utterance>""",
# "\nUser: ghjkhjabnufs<end_of_utterance>",
# """\nAssistant: That doesn’t seem to be a word. Could you ask me another way?<end_of_utterance>""",
# "\nUser: Do you like Cavalier King Charles Spaniel?<end_of_utterance>",
# """\nAssistant: I do not have personal opinions as I’m just a computer program. However, cavaliers are known for being excellent family pets due to their gentle and patient demeanor, making them great with children and other pets. Their affectionate nature also makes them ideal therapy dogs, as they can provide comfort and emotional support to those in need.<end_of_utterance>""",
# "\nUser: How many dogs do you see in this image?",
# "https://i.dailymail.co.uk/i/pix/2011/07/01/article-2010308-0CD22A8300000578-496_634x414.jpg",
# "<end_of_utterance>",
# """\nAssistant: There is no dogs in this image. The picture shows a tennis player jumping to volley the ball.<end_of_utterance>""",
]
API_TOKEN = os.getenv("HF_AUTH_TOKEN")
# IDEFICS_LOGO = "https://huggingface.co/spaces/HuggingFaceM4/idefics_playground/resolve/main/IDEFICS_logo.png"
BOT_AVATAR = "IDEFICS_logo.png"
# Chatbot utils
def turn_is_pure_media(turn):
return turn[1] is None
def format_user_prompt_with_im_history_and_system_conditioning(
user_prompt, chat_history
) -> List[Dict[str, Union[List, str]]]:
"""
Produces the resulting list that needs to go inside the processor.
It handles the potential image(s), the history and the system conditionning.
"""
resulting_list = copy.deepcopy(SYSTEM_PROMPT)
# Format history
for turn in chat_history:
if not resulting_list or (resulting_list and resulting_list[-1]["role"] != "user"):
resulting_list.append(
{
"role": "user",
"content": [],
}
)
if turn_is_pure_media(turn):
media = turn[0][0]
resulting_list[-1]["content"].append(Image.open(media))
else:
user_utterance, assistant_utterance = turn
resulting_list[-1]["content"].append(user_utterance.strip())
resulting_list.append(
{
"role": "assistant",
"content": [assistant_utterance]
}
)
# Format current input
if not user_prompt["files"]:
resulting_list.append(
{
"role": "user",
"content": [user_prompt['text']],
}
)
else:
# Choosing to put the image first (i.e. before the text), but this is an arbiratrary choice.
resulting_list.append(
{
"role": "user",
"content": [Image.open(im['path']) for im in user_prompt['files']] + [user_prompt['text']],
}
)
return resulting_list
def extract_images_from_msg_list(msg_list):
all_images = []
for msg in msg_list:
for c_ in msg["content"]:
if isinstance(c_, Image.Image):
all_images.append(c_)
return all_images
# @spaces.GPU(duration=180)
def model_inference(
user_prompt,
chat_history,
model_selector,
decoding_strategy,
temperature,
max_new_tokens,
repetition_penalty,
top_p,
):
if user_prompt["text"].strip() == "" and not user_prompt["files"]:
raise gr.Error("Please input a query and optionally image(s).")
if user_prompt["text"].strip() == "" and user_prompt["files"]:
raise gr.Error("Please input a text query along the image(s).")
for file in user_prompt["files"]:
if not file["mime_type"].startswith("image/"):
gr.Error("Idefics2 only supports images. Please input a valid image.")
if chat_history:
raise gr.Error("The comparative mode only supports single turns")
if len(MODELS) <= 1:
raise gr.Error("There should be at least 2 models to compare (3 might be a stretch on your regular 80GB H100).")
streamer = TextIteratorStreamer(
PROCESSOR.tokenizer,
skip_prompt=True,
timeout=5.,
)
# Common parameters to all decoding strategies
# This documentation is useful to read: https://huggingface.co/docs/transformers/main/en/generation_strategies
generation_args = {
"max_new_tokens": max_new_tokens,
"repetition_penalty": repetition_penalty,
"bad_words_ids": BAD_WORDS_IDS,
"eos_token_id": EOS_WORDS_IDS,
"streamer": streamer,
}
assert decoding_strategy in [
"Greedy",
"Top P Sampling",
]
if decoding_strategy == "Greedy":
generation_args["do_sample"] = False
elif decoding_strategy == "Top P Sampling":
generation_args["temperature"] = temperature
generation_args["do_sample"] = True
generation_args["top_p"] = top_p
# Creating model inputs
formated_prompt_list = format_user_prompt_with_im_history_and_system_conditioning(
user_prompt=user_prompt,
chat_history=chat_history,
)
inputs = PROCESSOR.apply_chat_template(formated_prompt_list, add_generation_prompt=True, return_tensors="pt")
inputs = {k: v.to(DEVICE) for k, v in inputs.items()}
generation_args.update(inputs)
# The regular non streaming generation mode
_ = generation_args.pop("streamer")
print(f"Input: {user_prompt}")
order = random.sample(range(len(MODELS)), len(MODELS))
result = ""
for idx, selected_model in enumerate(order):
generated_ids = MODELS[sorted(list(MODELS.keys()))[selected_model]].generate(**generation_args)
generated_text = PROCESSOR.batch_decode(generated_ids[:, generation_args["input_ids"].size(-1): ], skip_special_tokens=True)[0]
result += f"**MODEL {chr(65+idx)}**:\n{generated_text}\n\n---------------------\n\n"
print(f"MODEL {chr(65+idx)}: {sorted(list(MODELS.keys()))[selected_model]}")
print("----------")
result = result[:-25]
return result
# # The streaming generation mode
# thread = Thread(
# target=MODELS[model_selector].generate,
# kwargs=generation_args,
# )
# thread.start()
# print("start generating")
# acc_text = ""
# for text_token in streamer:
# time.sleep(0.04)
# acc_text += text_token
# if acc_text.endswith("<end_of_utterance>"):
# acc_text = acc_text[:-18]
# yield acc_text
# print("success - generated the following text:", acc_text)
# Hyper-parameters for generation
max_new_tokens = gr.Slider(
minimum=8,
maximum=1024,
value=512,
step=1,
interactive=True,
label="Maximum number of new tokens to generate",
)
repetition_penalty = gr.Slider(
minimum=0.01,
maximum=5.0,
value=1.0,
step=0.01,
interactive=True,
label="Repetition penalty",
info="1.0 is equivalent to no penalty",
)
decoding_strategy = gr.Radio(
[
"Greedy",
"Top P Sampling",
],
value="Greedy",
label="Decoding strategy",
interactive=True,
info="Higher values is equivalent to sampling more low-probability tokens.",
)
temperature = gr.Slider(
minimum=0.0,
maximum=5.0,
value=0.4,
step=0.1,
interactive=True,
label="Sampling temperature",
info="Higher values will produce more diverse outputs.",
)
top_p = gr.Slider(
minimum=0.01,
maximum=0.99,
value=0.8,
step=0.01,
interactive=True,
label="Top P",
info="Higher values is equivalent to sampling more low-probability tokens.",
)
chatbot = gr.Chatbot(
label="IDEFICS2",
avatar_images=[None, BOT_AVATAR],
height=750,
)
with gr.Blocks(fill_height=True) as demo:
# model selector should be set to `visbile=False` ultimately
with gr.Row(elem_id="model_selector_row"):
model_selector = gr.Dropdown(
choices=MODELS.keys(),
value=list(MODELS.keys())[0],
interactive=True,
show_label=False,
container=False,
label="Model",
visible=True,
)
decoding_strategy.change(
fn=lambda selection: gr.Slider(
visible=(
selection in ["contrastive_sampling", "beam_sampling", "Top P Sampling", "sampling_top_k"]
)
),
inputs=decoding_strategy,
outputs=temperature,
)
decoding_strategy.change(
fn=lambda selection: gr.Slider(visible=(selection in ["Top P Sampling"])),
inputs=decoding_strategy,
outputs=top_p,
)
gr.ChatInterface(
fn=model_inference,
chatbot=chatbot,
# examples=[{"text": "hello"}, {"text": "hola"}, {"text": "merhaba"}],
title="Idefics2 Playground",
multimodal=True,
additional_inputs=[model_selector, decoding_strategy, temperature, max_new_tokens, repetition_penalty, top_p],
)
demo.launch()