You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for j in range(8):
cur_image_features = image_features[cur_image_idx+j*4]
I don't quite understand this:
First, cur_image_idx keeps being 0, which means you don't support multi-image training case
Also, I think 4 there should be consistent with the batch size, not always 4.
Somebody has the same confusion with me?
The text was updated successfully, but these errors were encountered:
Our repository has been fully improved, and almost all bugs have been eliminated. For details, please refer to the main branch and the LLaVA-UHD v1 branch. This issue is now closed. If there are any new problems, feel free to open a new issue.
in adapt_llava.py, you have this
I don't quite understand this:
First, cur_image_idx keeps being 0, which means you don't support multi-image training case
Also, I think
4
there should be consistent with the batch size, not always4
.Somebody has the same confusion with me?
The text was updated successfully, but these errors were encountered: