We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
class CLIPVisualEncoder(nn.Module): def init(self, clip_model): super().init() self.clip_model = clip_model self.featuremaps = None
for i in range(12): # 12 resblocks in VIT visual transformer self.clip_model.visual.transformer.resblocks[i].register_forward_hook( self.make_hook(i)) def make_hook(self, name): def hook(module, input, output): if len(output.shape) == 3: self.featuremaps[name] = output.permute( 1, 0, 2) # LND -> NLD bs, smth, 768 else: self.featuremaps[name] = output return hook
这个函数无法获得特征图
The text was updated successfully, but these errors were encountered:
No branches or pull requests
class CLIPVisualEncoder(nn.Module):
def init(self, clip_model):
super().init()
self.clip_model = clip_model
self.featuremaps = None
这个函数无法获得特征图
The text was updated successfully, but these errors were encountered: