aboutsummaryrefslogtreecommitdiff
path: root/code/sunlab/suntorch/models/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'code/sunlab/suntorch/models/common.py')
-rw-r--r--code/sunlab/suntorch/models/common.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/code/sunlab/suntorch/models/common.py b/code/sunlab/suntorch/models/common.py
new file mode 100644
index 0000000..f10930e
--- /dev/null
+++ b/code/sunlab/suntorch/models/common.py
@@ -0,0 +1,12 @@
+from torch.autograd import Variable
+
+EPS = 1e-15
+
+
+def to_var(x):
+ """# Convert to variable"""
+ import torch
+
+ if torch.cuda.is_available():
+ x = x.cuda()
+ return Variable(x)