File size: 1,767 Bytes
be3bd43
9673377
 
 
 
0c9f542
 
 
9673377
 
 
 
 
 
 
 
0c9f542
9673377
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ab6e320
 
 
 
 
 
 
 
 
 
9673377
 
 
 
 
 
ab6e320
9673377
ab6e320
 
9673377
 
 
 
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
# Import libraries
import gradio as gr
import torch
from PIL import Image
from transformers import AutoModel, AutoTokenizer
import spaces

device="cuda"

# Load the model and tokenizer
model = AutoModel.from_pretrained('openbmb/MiniCPM-Llama3-V-2_5', trust_remote_code=True, torch_dtype=torch.float16)
model = model.to(device='cuda')
tokenizer = AutoTokenizer.from_pretrained('openbmb/MiniCPM-Llama3-V-2_5', trust_remote_code=True)
model.eval()

# Define a function to generate a response
@spaces.GPU
def generate_response(image, question):
    msgs = [{'role': 'user', 'content': question}]
    res = model.chat(
        image=image,
        msgs=msgs,
        tokenizer=tokenizer,
        sampling=True,
        temperature=0.7,
        stream=True
    )
    generated_text = ""
    for new_text in res:
        generated_text += new_text
    return generated_text

# Create the footer with links
footer = """
<div style="text-align: center; margin-top: 20px;">
    <a href="https://www.linkedin.com/in/pejman-ebrahimi-4a60151a7/" target="_blank">My LinkedIn</a> |
    <a href="https://github.com/arad1367/Visual_QA_MiniCPM-Llama3-V-2_5_GradioApp" target="_blank">My GitHub</a> |
    <a href="https://arad1367.pythonanywhere.com/home" target="_blank">My PhD defense website</a>
    <br>
    Made with 💖 by Pejman Ebrahimi
</div>
"""

# Create a Gradio interface
iface = gr.Interface(
    fn=generate_response,
    inputs=[gr.Image(type="pil"), "text"],
    outputs="text",
    title="Visual Question Answering - Charts analysis and complete image analysis",
    description="Input an image and a question related to the image to receive a response.",
    theme='abidlabs/dracula_revamped',
    footer=gr.HTML(footer)
)

# Launch the app
iface.launch(debug=True)