Spaces:
Running
on
Zero
Running
on
Zero
amstrongzyf
commited on
Commit
•
29af230
1
Parent(s):
ffd8c86
Update app.py
Browse files
app.py
CHANGED
@@ -4,101 +4,108 @@ from threading import Thread
|
|
4 |
import gradio as gr
|
5 |
import torch
|
6 |
from PIL import Image
|
7 |
-
from transformers import AutoProcessor, LlavaForConditionalGeneration
|
8 |
-
from transformers import TextIteratorStreamer
|
9 |
|
10 |
import spaces
|
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 |
@spaces.GPU
|
37 |
def bot_streaming(message, history):
|
38 |
print(message)
|
|
|
39 |
if message["files"]:
|
40 |
-
# message["files"][-1] is a Dict or just a string
|
41 |
if type(message["files"][-1]) == dict:
|
42 |
-
|
43 |
else:
|
44 |
-
|
45 |
else:
|
46 |
-
# if there's no image uploaded for this turn, look for images in the past turns
|
47 |
-
# kept inside tuples, take the last one
|
48 |
for hist in history:
|
49 |
if type(hist[0]) == tuple:
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
# Handle the case where image is None
|
54 |
-
gr.Error("You need to upload an image for LLaVA to work.")
|
55 |
-
except NameError:
|
56 |
-
# Handle the case where 'image' is not defined at all
|
57 |
gr.Error("You need to upload an image for LLaVA to work.")
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
thread.start()
|
69 |
-
|
70 |
-
text_prompt = f"<|start_header_id|>user<|end_header_id|>\n\n{message['text']}<|eot_id|><|start_header_id|>assistant<|end_header_id|>\n\n"
|
71 |
-
# print(f"text_prompt: {text_prompt}")
|
72 |
|
73 |
buffer = ""
|
74 |
-
|
75 |
for new_text in streamer:
|
76 |
-
# find <|eot_id|> and remove it from the new_text
|
77 |
-
if "<|eot_id|>" in new_text:
|
78 |
-
new_text = new_text.split("<|eot_id|>")[0]
|
79 |
buffer += new_text
|
80 |
-
|
81 |
-
# generated_text_without_prompt = buffer[len(text_prompt):]
|
82 |
generated_text_without_prompt = buffer
|
83 |
-
# print(generated_text_without_prompt)
|
84 |
time.sleep(0.06)
|
85 |
-
# print(f"new_text: {generated_text_without_prompt}")
|
86 |
yield generated_text_without_prompt
|
87 |
|
88 |
-
|
89 |
-
chatbot=gr.Chatbot(placeholder=PLACEHOLDER,scale=1)
|
90 |
chat_input = gr.MultimodalTextbox(interactive=True, file_types=["image"], placeholder="Enter message or upload file...", show_label=False)
|
91 |
-
with gr.Blocks(fill_height=True
|
92 |
gr.ChatInterface(
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
|
|
102 |
)
|
103 |
|
104 |
demo.queue(api_open=False)
|
|
|
4 |
import gradio as gr
|
5 |
import torch
|
6 |
from PIL import Image
|
7 |
+
from transformers import AutoProcessor, LlavaForConditionalGeneration, TextIteratorStreamer, TextStreamer
|
|
|
8 |
|
9 |
import spaces
|
10 |
+
import argparse
|
11 |
+
|
12 |
+
from llava_llama3.model.builder import load_pretrained_model
|
13 |
+
from llava_llama3.constants import IMAGE_TOKEN_INDEX, DEFAULT_IMAGE_TOKEN, DEFAULT_IM_START_TOKEN, DEFAULT_IM_END_TOKEN
|
14 |
+
from llava_llama3.conversation import conv_templates, SeparatorStyle
|
15 |
+
from llava_llama3.utils import disable_torch_init
|
16 |
+
from llava_llama3.mm_utils import process_images, tokenizer_image_token, get_model_name_from_path
|
17 |
+
from llava_llama3.serve.cli import chat_llava
|
18 |
+
|
19 |
+
import requests
|
20 |
+
from io import BytesIO
|
21 |
+
import base64
|
22 |
+
import os
|
23 |
+
import glob
|
24 |
+
import pandas as pd
|
25 |
+
from tqdm import tqdm
|
26 |
+
import json
|
27 |
+
|
28 |
+
root_path = os.path.dirname(os.path.abspath(__file__))
|
29 |
+
print(f'\033[92m{root_path}\033[0m')
|
30 |
+
os.environ['GRADIO_TEMP_DIR'] = root_path
|
31 |
+
|
32 |
+
parser = argparse.ArgumentParser()
|
33 |
+
parser.add_argument("--model-path", type=str, default="TheFinAI/FinLLaVA")
|
34 |
+
parser.add_argument("--device", type=str, default="cuda")
|
35 |
+
parser.add_argument("--conv-mode", type=str, default="llama_3")
|
36 |
+
parser.add_argument("--temperature", type=float, default=0.2)
|
37 |
+
parser.add_argument("--max-new-tokens", type=int, default=512)
|
38 |
+
parser.add_argument("--load-8bit", action="store_true")
|
39 |
+
parser.add_argument("--load-4bit", action="store_true")
|
40 |
+
args = parser.parse_args()
|
41 |
+
|
42 |
+
# Load model
|
43 |
+
tokenizer, llava_model, image_processor, context_len = load_pretrained_model(
|
44 |
+
args.model_path,
|
45 |
+
None,
|
46 |
+
'llava_llama3',
|
47 |
+
args.load_8bit,
|
48 |
+
args.load_4bit,
|
49 |
+
device=args.device)
|
50 |
|
51 |
@spaces.GPU
|
52 |
def bot_streaming(message, history):
|
53 |
print(message)
|
54 |
+
image_file = None
|
55 |
if message["files"]:
|
|
|
56 |
if type(message["files"][-1]) == dict:
|
57 |
+
image_file = message["files"][-1]["path"]
|
58 |
else:
|
59 |
+
image_file = message["files"][-1]
|
60 |
else:
|
|
|
|
|
61 |
for hist in history:
|
62 |
if type(hist[0]) == tuple:
|
63 |
+
image_file = hist[0][0]
|
64 |
+
|
65 |
+
if image_file is None:
|
|
|
|
|
|
|
|
|
66 |
gr.Error("You need to upload an image for LLaVA to work.")
|
67 |
+
return
|
68 |
+
|
69 |
+
streamer = TextIteratorStreamer(tokenizer, skip_prompt=True, skip_special_tokens=True)
|
70 |
+
def generate():
|
71 |
+
print('\033[92mRunning chat\033[0m')
|
72 |
+
output = chat_llava(
|
73 |
+
args=args,
|
74 |
+
image_file=image_file,
|
75 |
+
text=message['text'],
|
76 |
+
tokenizer=tokenizer,
|
77 |
+
model=llava_model,
|
78 |
+
image_processor=image_processor,
|
79 |
+
context_len=context_len,
|
80 |
+
streamer=streamer)
|
81 |
+
return output
|
82 |
+
|
83 |
+
thread = Thread(target=generate)
|
84 |
thread.start()
|
85 |
+
# thread.join()
|
|
|
|
|
86 |
|
87 |
buffer = ""
|
88 |
+
# output = generate()
|
89 |
for new_text in streamer:
|
|
|
|
|
|
|
90 |
buffer += new_text
|
|
|
|
|
91 |
generated_text_without_prompt = buffer
|
|
|
92 |
time.sleep(0.06)
|
|
|
93 |
yield generated_text_without_prompt
|
94 |
|
95 |
+
chatbot = gr.Chatbot(scale=1)
|
|
|
96 |
chat_input = gr.MultimodalTextbox(interactive=True, file_types=["image"], placeholder="Enter message or upload file...", show_label=False)
|
97 |
+
with gr.Blocks(fill_height=True) as demo:
|
98 |
gr.ChatInterface(
|
99 |
+
fn=bot_streaming,
|
100 |
+
title="FinLLaVA Demo",
|
101 |
+
examples=[
|
102 |
+
{"text": "What is in this picture?", "files": ["http://images.cocodataset.org/val2017/000000039769.jpg"]},
|
103 |
+
],
|
104 |
+
description="",
|
105 |
+
stop_btn="Stop Generation",
|
106 |
+
multimodal=True,
|
107 |
+
textbox=chat_input,
|
108 |
+
chatbot=chatbot,
|
109 |
)
|
110 |
|
111 |
demo.queue(api_open=False)
|