Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
ydshieh
/
debug-temp
like
0
Model card
Files
Files and versions
Community
main
debug-temp
/
temp.py
3v324v23
add script
0ff5b7f
9 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
109 Bytes
import
torch
conv = torch.load(
"depthwise_conv.pt"
)
h = torch.load(
"hidden_states.pt"
)
o = conv(h)
print
(o)