mirror of
https://github.com/Vision-CAIR/MiniGPT-4.git
synced 2025-04-05 18:40:46 +00:00
Fix model and image size mismatch message
This commit is contained in:
parent
ef1ac08ce3
commit
26f27d6f15
@ -199,7 +199,7 @@ class PatchEmbed(nn.Module):
|
|||||||
B, C, H, W = x.shape
|
B, C, H, W = x.shape
|
||||||
# FIXME look at relaxing size constraints
|
# FIXME look at relaxing size constraints
|
||||||
assert H == self.img_size[0] and W == self.img_size[1], \
|
assert H == self.img_size[0] and W == self.img_size[1], \
|
||||||
f"Input image size ({H}*{W}) doesn't match model ({self.img_size[0]}*{self.img_size[1]})."
|
f"Input image size ({self.img_size[0]}*{self.img_size[1]}) doesn't match model ({H}*{W})."
|
||||||
x = self.proj(x).flatten(2).transpose(1, 2)
|
x = self.proj(x).flatten(2).transpose(1, 2)
|
||||||
return x
|
return x
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user