File size: 7,468 Bytes
181722d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
73d241c
 
 
 
 
 
181722d
 
 
 
 
 
 
 
 
 
 
 
 
73d241c
 
 
 
 
 
181722d
 
 
 
 
 
 
 
 
73d241c
 
 
fecea78
73d241c
 
 
 
 
fecea78
73d241c
 
 
fecea78
73d241c
 
 
 
fecea78
73d241c
181722d
73d241c
 
 
181722d
73d241c
 
 
181722d
73d241c
 
 
15fb106
 
 
 
181722d
 
 
73d241c
 
 
 
 
 
 
 
 
 
 
181722d
15fb106
181722d
 
 
 
 
 
73d241c
 
 
 
 
 
 
 
 
 
 
181722d
 
 
 
 
 
 
73d241c
 
 
 
 
 
 
 
 
 
 
 
 
3e7fe60
181722d
 
 
73d241c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
181722d
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
import argparse
import os
import random

import numpy as np
import torch
import torch.backends.cudnn as cudnn
import gradio as gr

from minigpt4.common.config import Config
from minigpt4.common.dist_utils import get_rank
from minigpt4.common.registry import registry
from minigpt4.conversation.conversation import Chat, CONV_VISION

# imports modules for registration
from minigpt4.datasets.builders import *
from minigpt4.models import *
from minigpt4.processors import *
from minigpt4.runners import *
from minigpt4.tasks import *

def parse_args():
    """
    Parse command line arguments.

    Returns:
    argparse.Namespace: Parsed command line arguments.
    """
    parser = argparse.ArgumentParser(description="Demo")
    parser.add_argument("--cfg-path", type=str, default='eval_configs/minigpt4.yaml', help="path to configuration file.")
    parser.add_argument(
        "--options",
        nargs="+",
        help="override some settings in the used config, the key-value pair "
        "in xxx=yyy format will be merged into config file (deprecate), "
        "change to --cfg-options instead.",
    )
    args = parser.parse_args()
    return args

def setup_seeds(config):
    """
    Set up random seeds for reproducibility.

    Parameters:
    config (Config): Configuration object.
    """
    seed = config.run_cfg.seed + get_rank()

    random.seed(seed)
    np.random.seed(seed)
    torch.manual_seed(seed)

    cudnn.benchmark = False
    cudnn.deterministic = True

def initialize_chat():
    """
    Initialize the chat model.

    Returns:
    Chat: Initialized chat model.
    """
    print('Initializing Chat')
    config = Config(parse_args())

    model_config = config.model_cfg
    model_cls = registry.get_model_class(model_config.arch)
    model = model_cls.from_config(model_config).to('cuda:0')

    vis_processor_cfg = config.datasets_cfg.cc_align.vis_processor.train
    vis_processor = registry.get_processor_class(vis_processor_cfg.name).from_config(vis_processor_cfg)
    chat = Chat(model, vis_processor)
    print('Initialization Finished')

    return chat

def gradio_reset(chat_state, img_list):
    """
    Reset the Gradio interface.

    Parameters:
    chat_state (gr.State): The current state of the chat.
    img_list (gr.State): The current list of images.

    Returns:
    tuple: Updated Gradio interface elements.
    """
    if chat_state is not None:
        chat_state.messages = []
    if img_list is not None:
        img_list = []
    return None, gr.update(value=None, interactive=True), gr.update(placeholder='Please upload your image first', interactive=False), gr.update(value="Upload & Start Chat", interactive=True), chat_state, img_list

def upload_img(gr_img, text_input, chat_state):
    """
    Upload an image and update the Gradio interface.

    Parameters:
    gr_img (gr.Image): The uploaded image.
    text_input (gr.Textbox): The text input box.
    chat_state (gr.State): The current state of the chat.

    Returns:
    tuple: Updated Gradio interface elements.
    """
    if gr_img is None:
        return None, None, gr.update(interactive=True), chat_state, None
    chat_state = CONV_VISION.copy()
    img_list = []
    llm_message = chat.upload_img(gr_img, chat_state, img_list)
    return gr.update(interactive=False), gr.update(interactive=True, placeholder='Type and press Enter'), gr.update(value="Start Chatting", interactive=False), chat_state, img_list

def gradio_ask(user_message, chatbot, chat_state):
    """
    Process user message and update the Gradio interface.

    Parameters:
    user_message (str): The message input by the user.
    chatbot (list): The current state of the chatbot.
    chat_state (gr.State): The current state of the chat.

    Returns:
    tuple: Updated Gradio interface elements.
    """
    if len(user_message) == 0:
        return gr.update(interactive=True, placeholder='Input should not be empty!'), chatbot, chat_state
    chat.ask(user_message, chat_state)
    chatbot = chatbot + [[user_message, None]]
    return '', chatbot, chat_state

def gradio_answer(chatbot, chat_state, img_list, num_beams, temperature):
    """
    Generate a chatbot answer and update the Gradio interface.

    Parameters:
    chatbot (list): The current state of the chatbot.
    chat_state (gr.State): The current state of the chat.
    img_list (gr.State): The current list of images.
    num_beams (int): The number of beams for the beam search.
    temperature (float): The temperature for the generation.

    Returns:
    tuple: Updated Gradio interface elements.
    """
    llm_message = chat.answer(conv=chat_state, img_list=img_list, max_new_tokens=300, num_beams=1, temperature=temperature, max_length=2000)[0]
    chatbot[-1][1] = llm_message
    return chatbot, chat_state, img_list

def main():
    """
    Main function to run the Gradio interface.
    """
    # Initialize the chat model
    chat = initialize_chat()

    # Set up the Gradio interface
    title = """<h1 align="center">Demo of MiniGPT-4</h1>"""
    description = """<h3>This is the demo of MiniGPT-4. Upload your images and start chatting!</h3>"""
    article = """<div style='display:flex; gap: 0.25rem; '><a href='https://minigpt-4.github.io'><img src='https://img.shields.io/badge/Project-Page-Green'></a><a href='https://github.com/Vision-CAIR/MiniGPT-4'><img src='https://img.shields.io/badge/Github-Code-blue'></a><a href='https://github.com/TsuTikgiau/blip2-llm/blob/release_prepare/MiniGPT_4.pdf'><img src='https://img.shields.io/badge/Paper-PDF-red'></a></div>
    """

    with gr.Blocks() as demo:
        gr.Markdown(title)
        gr.Markdown(SHARED_UI_WARNING)
        gr.Markdown(description)
        gr.Markdown(article)

        with gr.Row():
            with gr.Column(scale=0.5):
                image = gr.Image(type="pil")
                upload_button = gr.Button(value="Upload & Start Chat", interactive=True, variant="primary")
                clear = gr.Button("Restart")
                
                num_beams = gr.Slider(
                    minimum=1,
                    maximum=5,
                    value=1,
                    step=1,
                    interactive=True,
                    label="beam search numbers)",
                )
                
                temperature = gr.Slider(
                    minimum=0.1,
                    maximum=2.0,
                    value=1.0,
                                        step=0.1,
                    interactive=True,
                    label="Temperature",
                )

            with gr.Column():
                chat_state = gr.State()
                img_list = gr.State()
                chatbot = gr.Chatbot(label='MiniGPT-4')
                text_input = gr.Textbox(label='User', placeholder='Please upload your image first', interactive=False)
        
        upload_button.click(upload_img, [image, text_input, chat_state], [image, text_input, upload_button, chat_state, img_list])
        
        text_input.submit(gradio_ask, [text_input, chatbot, chat_state], [text_input, chatbot, chat_state]).then(
            gradio_answer, [chatbot, chat_state, img_list, num_beams, temperature], [chatbot, chat_state, img_list]
        )
        clear.click(gradio_reset, [chat_state, img_list], [chatbot, image, text_input, upload_button, chat_state, img_list], queue=False)

    demo.launch(enable_queue=True)

if __name__ == "__main__":
    main()