Charlesliu77
Results
2
comments of
Charlesliu77
> Hi @Charlesliu77, could you point to which line of the code this issue happens at? llava_arch.py: line 378 `image_features = torch.stack(image_features, dim=0)` the input image in different size after...
> Hi, can you try replacing this line with > > ``` > if all([feature.shape[0] == image_features[0].shape[0] for feature in image_features]): > image_features = torch.stack(image_features, dim=0) > ``` Thanks a...