Vision-CAIR / MiniGPT-4

Open-sourced codes for MiniGPT-4 and MiniGPT-v2 (https://minigpt-4.github.io, https://minigpt-v2.github.io/)
https://minigpt-4.github.io
BSD 3-Clause "New" or "Revised" License
25.4k stars 2.91k forks source link

Is there any limit of the input prompt length? #353

Open nkjulia opened 1 year ago

nkjulia commented 1 year ago

imagine a scenario there are some text elements and a background ,let the the model generate the bbox of the elements on the background. is there any limits of the input prompt length. thanks.

shashanknani04 commented 1 year ago

imagine a scenario there are some text elements and a background ,let the the model generate the bbox of the elements on the background. is there any limits of the input prompt length. thanks. In minigpt4/models/minigpt_v2.py there the max length of the prompt is 300 and the max content length given by minigpt-4 is 3800 max_txt_len=300, max_context_len=3800, Thankyou