MiniGPT-4 icon indicating copy to clipboard operation
MiniGPT-4 copied to clipboard

MiniGPT-4: Enhancing Vision-language Understanding with Advanced Large Language Models

Results 328 MiniGPT-4 issues
Sort by recently updated
recently updated
newest added

Initializing Chat Loading VIT Loading VIT Done Loading Q-Former Loading Q-Former Done Loading LLAMA miniconda3/envs/fit/lib/python3.11/site-packages/transformers/tokenization_utils_base.py:1714: FutureWarning: Calling LlamaTokenizer.from_pretrained() with the path to a single file or url is deprecated and...

(minigpt4) C:\MINIGPT\MiniGPT-4>python demo.py --cfg-path eval_configs/minigpt4_eval.yaml --gpu-id 0 Initializing Chat Loading VIT Loading VIT Done Loading Q-Former Loading Q-Former Done Loading LLAMA ===================================BUG REPORT=================================== Welcome to bitsandbytes. For bug reports, please...

After uploading a sample photo and entering a first prompt it throws back this error: ``` Traceback (most recent call last): File "C:\Users\Sasch\.conda\envs\minigpt4\lib\site-packages\gradio\routes.py", line 394, in run_predict output = await...

讲一下cpu的推理思路,大概需要60gb内存和6g显存 首先删掉对于gpuid的要求,或者干脆不传 parser.add_argument("--gpu-id", help="specify the gpu to load the model.") 所有用到--gpu-id的地方换成device='cpu' model = model_cls.from_config(model_config)#.to('cpu').to('cuda:{}'.format(args.gpu_id)) ... chat = Chat(model, vis_processor, device='cpu')#'cuda:{}'.format(args.gpu_id)) 然后是这个文件中把gpu都换成cpu,但是原来有些模型是加载到cpu的,内存可能会吃不住,现在可以加载的gpu了 ![image](https://user-images.githubusercontent.com/1176855/233369330-7eb3656a-3bb3-4bcb-ab43-14f16fb7b232.png) 只是一个简单暴力修改,不确定有没有问题,就不提pr了,大家自己改吧 First, in demo.py remove the requirement for...

python demo.py --cfg-path eval_configs/minigpt4_eval.yaml Initializing Chat Loading VIT Loading VIT Done Loading Q-Former Loading Q-Former Done Loading LLAMA Traceback (most recent call last): File "/home/Startupcolors/doze/wound/MiniGPT-4/demo.py", line 57, in model =...

![image](https://user-images.githubusercontent.com/1567021/233351931-69a69cc9-0bd3-47da-a4fd-79c28d81c31d.png) Does anyone know how to fix it?

Hi there :wave: Thank you for the amazing project. I was looking at the dataset and I've found some instances in wich the text description is heavily hallucinated. For instance,...

Initializing Chat usage: demo.py [-h] --cfg-path CFG_PATH [--options OPTIONS [OPTIONS ...]] demo.py: error: unrecognized arguments: --gpu-id 0 不知道为什么报这个错误

(minigpt4_v2) F:\MiniGPT-4>python demo.py --cfg-path eval_configs/minigpt4_eval.yaml --gpu-id 0 Initializing Chat usage: demo.py [-h] --cfg-path CFG_PATH [--options OPTIONS [OPTIONS ...]] demo.py: error: unrecognized arguments: --gpu-id 0 gpu:4090 can't run

When running `conda env create -f environment.yml`, I encountered the error: ``` Pip subprocess error: ERROR: Could not find a version that satisfies the requirement decord==0.6.0 (from versions: none) ERROR:...