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
3v324v23
commited on
Feb 6
Commit
0ff5b7f
•
1 Parent(s):
83202a6
add script
Browse files
Files changed (1)
hide
show
temp.py
+6
-0
temp.py
ADDED
Viewed
@@ -0,0 +1,6 @@
1
+
import torch
2
+
3
+
conv = torch.load("depthwise_conv.pt")
4
+
h = torch.load("hidden_states.pt")
5
+
o = conv(h)
6
+
print(o)