Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Input images of other sizes #28

Open
Zhcyoung opened this issue Oct 6, 2024 · 2 comments
Open

Input images of other sizes #28

Zhcyoung opened this issue Oct 6, 2024 · 2 comments

Comments

@Zhcyoung
Copy link

Zhcyoung commented Oct 6, 2024

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).

@Xiyue-Wang
Copy link
Collaborator

Hi, Zhcyoung, yes. To use the pre-trained weights, the input patches need to be resized to 224x224 pixels.

@Zhcyoung
Copy link
Author

Zhcyoung commented Oct 8, 2024

ok,Thank you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants