File size: 109 Bytes
0ff5b7f
 
 
 
 
 
1
2
3
4
5
6
7
import torch

conv = torch.load("depthwise_conv.pt")
h = torch.load("hidden_states.pt")
o = conv(h)
print(o)