11 lines
212 B
Python
11 lines
212 B
Python
|
|
||
|
from model.backbone.CMT import CMT_Tiny
|
||
|
import torch
|
||
|
from torch import nn
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
input=torch.randn(1,3,224,224)
|
||
|
model = CMT_Tiny()
|
||
|
output=model(input)
|
||
|
print(output[0].shape)
|