-
Notifications
You must be signed in to change notification settings - Fork 2.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create cli_demo.py #247
Open
freelancerllm
wants to merge
1
commit into
Vision-CAIR:main
Choose a base branch
from
freelancerllm:main-1
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Create cli_demo.py #247
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
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(): | ||
parser = argparse.ArgumentParser(description="Demo") | ||
parser.add_argument("--cfg-path", required=True, 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("--num-beams", type=int, default=2, help="specify the gpu to load the model.") | ||
parser.add_argument("--temperature", type=int, default=0.9, help="specify the gpu to load the model.") | ||
parser.add_argument("--english", type=bool, default=True, help="chinese or english") | ||
parser.add_argument("--prompt-en", type=str, default="can you describe the current picture?", help="Can you describe the current picture?") | ||
parser.add_argument("--prompt-zh", type=str, default="你能描述一下当前的图片?", help="Can you describe the current picture?") | ||
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 Chat') | ||
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) | ||
chat = Chat(model, vis_processor, device='cuda:{}'.format(args.gpu_id)) | ||
print('Initialization Finished') | ||
|
||
while True: | ||
if not args.english: | ||
image_path = input("请输入图像路径或URL(回车进入纯文本对话): ") | ||
else: | ||
image_path = input("Please enter the image path or URL (press Enter for plain text conversation): ") | ||
|
||
if image_path == 'stop': | ||
break | ||
if len(image_path) > 0: | ||
query = args.prompt_en if args.english else args.prompt_zh | ||
|
||
|
||
while True: | ||
if query == "clear": | ||
break | ||
if query == "stop": | ||
sys.exit(0) | ||
img_list = [] | ||
chat_state = CONV_VISION.copy() | ||
chat.upload_img(image_path, chat_state, img_list) | ||
chat.ask(query, chat_state) | ||
llm_message = chat.answer( | ||
conv=chat_state, | ||
img_list=img_list, | ||
num_beams=args.num_beams, | ||
temperature=args.temperature, | ||
max_new_tokens=300, | ||
max_length=2000 | ||
)[0] | ||
# chatbot[-1][1] = llm_message | ||
print("MiniGPT4:"+llm_message) | ||
query = input("user:") |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Needed to add
chat.encode_img(img_list)
here