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

Patch_level extract #45

Open
Tuner12 opened this issue Dec 14, 2024 · 5 comments
Open

Patch_level extract #45

Tuner12 opened this issue Dec 14, 2024 · 5 comments

Comments

@Tuner12
Copy link

Tuner12 commented Dec 14, 2024

model = ctranspath()
model.head = nn.Identity()
td = torch.load(r'./model_weight/CHIEF_CTransPath.pth')
model.load_state_dict(td['model'], strict=True)

when the strict = True,there are some keys missing:
RuntimeError: Error(s) in loading state_dict for SwinTransformer:
Missing key(s) in state_dict: "patch_embed.proj.weight", "patch_embed.proj.bias".
Unexpected key(s) in state_dict: "patch_embed.proj.0.weight", "patch_embed.proj.1.weight", "patch_embed.proj.1.bias", "patch_embed.proj.1.running_mean", "patch_embed.proj.1.running_var", "patch_embed.proj.1.num_batches_tracked", "patch_embed.proj.3.weight", "patch_embed.proj.4.weight", "patch_embed.proj.4.bias", "patch_embed.proj.4.running_mean", "patch_embed.proj.4.running_var", "patch_embed.proj.4.num_batches_tracked", "patch_embed.proj.6.weight", "patch_embed.proj.6.bias".

But if I set false,then the model works and print [1,768] normally.

Btw,from timm.models.layers.helpers import to_2tuple,this method is outdated version,if I use the latest timm, from timm.layers.helpers import to_2tuple,there is some error in init: missing strict_img_size and output_fmt.

@Dadatata-JZ
Copy link
Collaborator

@Tuner12

Yes, as we have specified the timm version. At one point, timm underwent a significant update. We always used "strict=True" and never met this issue.

For the tile-level extractor, you can also follow the instruction in here.
https://github.com/Xiyue-Wang/TransPath

@Jonyyqn
Copy link

Jonyyqn commented Dec 23, 2024

I get the same Error. The version of timm is 0.5.4, which is instralled through pip.

@Jonyyqn
Copy link

Jonyyqn commented Dec 24, 2024

When I try the command "pip install timm-0.5.4.tar", I get the Error as follows:

i
          canonicalize_version(version, strip_trailing_zero=False),
      TypeError: canonicalize_version() got an unexpected keyword argument 'strip_trailing_zero'
      [end of output]

  note: This error originates from a subprocess, and is likely not a problem with pip.
error: metadata-generation-failed

× Encountered error while generating package metadata.
╰─> See above for output.

note: This is an issue with the package mentioned above, not pip.
hint: See above for details.

@guofeng97
Copy link

@Jonyyqn I had the same problem once, maybe you can try using the 'build ' tool. pip install build

@Jonyyqn
Copy link

Jonyyqn commented Dec 25, 2024

@Jonyyqn I had the same problem once, maybe you can try using the 'build ' tool. pip install build

Thx

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

4 participants