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
I found that all input images require transforms.Resize(224). Can CHIEF extract features without resizing images?Currently, when I input images with other size, an error occurs.
model = ctranspath() model.head = nn.Identity() td = torch.load(r'./model_weights/CHIEF_CTransPath.pth') model.load_state_dict(td['model'], strict=True) batch = torch.randn((1,3,512,512)) features = model(batch)
AssertionError: Input image size (512*512) doesn't match model (224*224).
The text was updated successfully, but these errors were encountered:
I found that all input images require
transforms.Resize(224)
. Can CHIEF extract features without resizing images?Currently, when I input images with other size, an error occurs.model = ctranspath()
model.head = nn.Identity()
td = torch.load(r'./model_weights/CHIEF_CTransPath.pth')
model.load_state_dict(td['model'], strict=True)
batch = torch.randn((1,3,512,512))
features = model(batch)
AssertionError: Input image size (512*512) doesn't match model (224*224).
The text was updated successfully, but these errors were encountered: