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
感谢您的贡献爱,在使用示例代码时
from fightingcv_attention.attention import CrissCrossAttention
import torch
if name == 'main':
input=torch.randn(2, 3, 256, 256)
model = CrissCrossAttention(64)
outputs = model(input)
print(outputs.shape)
出现TypeError: 'module' object is not callable
The text was updated successfully, but these errors were encountered:
感谢您的贡献爱,在使用示例代码时
from fightingcv_attention.attention import CrissCrossAttention
import torch
if name == 'main':
input=torch.randn(2, 3, 256, 256)
model = CrissCrossAttention(64)
outputs = model(input)
print(outputs.shape)
出现TypeError: 'module' object is not callable
The text was updated successfully, but these errors were encountered: