update
Browse files
app.py
CHANGED
@@ -98,8 +98,6 @@ def fps(x, enabled, n, device, random_start=False):
|
|
98 |
class DynamicsVisualizer:
|
99 |
|
100 |
def __init__(self):
|
101 |
-
wp.init()
|
102 |
-
|
103 |
self.width = 640
|
104 |
self.height = 480
|
105 |
|
@@ -143,8 +141,8 @@ class DynamicsVisualizer:
|
|
143 |
random.seed(seed)
|
144 |
np.random.seed(seed)
|
145 |
torch.manual_seed(seed)
|
146 |
-
torch.autograd.set_detect_anomaly(True)
|
147 |
-
torch.backends.cudnn.benchmark = True
|
148 |
|
149 |
self.clear()
|
150 |
|
|
|
98 |
class DynamicsVisualizer:
|
99 |
|
100 |
def __init__(self):
|
|
|
|
|
101 |
self.width = 640
|
102 |
self.height = 480
|
103 |
|
|
|
141 |
random.seed(seed)
|
142 |
np.random.seed(seed)
|
143 |
torch.manual_seed(seed)
|
144 |
+
# torch.autograd.set_detect_anomaly(True)
|
145 |
+
# torch.backends.cudnn.benchmark = True
|
146 |
|
147 |
self.clear()
|
148 |
|