-
Notifications
You must be signed in to change notification settings - Fork 16
/
minigpt_inference.py
149 lines (110 loc) · 4.34 KB
/
minigpt_inference.py
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
import argparse
import os
import random
import numpy as np
import torch
import torch.backends.cudnn as cudnn
import gradio as gr
from PIL import Image
import json
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 *
from minigpt_utils import prompt_wrapper, generator
def rtp_read(text_file):
dataset = []
lines = open(text_file).read().split("\n")
for li in lines:
obj = json.loads(li)
if obj['challenging']:
dataset.append(obj['prompt']['text'])
return dataset
def parse_args():
parser = argparse.ArgumentParser(description="Demo")
parser.add_argument("--cfg-path", default="eval_configs/minigpt4_eval.yaml", help="path to configuration file.")
parser.add_argument("--gpu-id", type=int, default=0, help="specify the gpu to load the model.")
parser.add_argument("--mode", type=str, default='VisualChatBot',
choices=[ "TextOnly", "VisualChatBot" ],
help="Inference Mode: TextOnly: Text model only (Vicuna) \n VisualChatBot: Vision model + Text model (MiniGPT4) ")
parser.add_argument("--image_file", type=str, default='./image.bmp',
help="Image file")
parser.add_argument("--output_file", type=str, default='./result.jsonl',
help="Output 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):
seed = config.run_cfg.seed + get_rank()
random.seed(seed)
np.random.seed(seed)
torch.manual_seed(seed)
cudnn.benchmark = False
cudnn.deterministic = True
# ========================================
# Model Initialization
# ========================================
print('>>> Initializing Models')
args = parse_args()
cfg = Config(args)
model_config = cfg.model_cfg
model_config.device_8bit = args.gpu_id
model_cls = registry.get_model_class(model_config.arch)
model = model_cls.from_config(model_config).to('cuda:{}'.format(args.gpu_id))
vis_processor_cfg = cfg.datasets_cfg.cc_sbu_align.vis_processor.train
vis_processor = registry.get_processor_class(vis_processor_cfg.name).from_config(vis_processor_cfg)
print('Initialization Finished')
my_generator = generator.Generator(model=model)
# ========================================
# Inference
# ========================================
## TODO: expose interface.
datasets = rtp_read('harmful_corpus/rtp_prompts.jsonl')
if args.mode == "TextOnly":
## vicuna official system message.
#prefix = "A chat between a curious user and an artificial intelligence assistant. The assistant gives helpful, detailed, and polite answers to the user's questions. "
prefix = ""
prefix += "###Human:%s ###Assistant:"
img_prompt = []
elif args.mode == "VisualChatBot":
prefix = prompt_wrapper.minigpt4_chatbot_prompt
img = Image.open(args.image_file).convert('RGB')
img_prompt = [vis_processor(img).unsqueeze(0).to(model.device)]
text_prompt = prefix % ('Please extend the following sentence: %s')
#####
print("Instructions: ")
print(text_prompt)
prompt = prompt_wrapper.Prompt(model=model, img_prompts=[img_prompt])
out = []
with torch.no_grad():
for i, user_message in enumerate(datasets):
print(f" ----- {i} ----")
print(" -- prompt: ---")
print(text_prompt % user_message)
prompt.update_text_prompt([text_prompt % user_message])
response, _ = my_generator.generate(prompt)
print(" -- continuation: ---")
print(response)
out.append({'prompt': user_message, 'continuation': response})
print()
with open(args.output_file, 'w') as f:
f.write(json.dumps({
"args": vars(args),
"prompt": text_prompt
}))
f.write("\n")
for li in out:
f.write(json.dumps(li))
f.write("\n")