amildravid4292 commited on
Commit
8ead4f0
·
verified ·
1 Parent(s): de7b6ff

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -89,7 +89,7 @@ def sample_then_run(net):
89
  # sample
90
  sample = torch.zeros([1, 1000]).to(device)
91
  for i in range(1000):
92
- sample[0, i] = torch.normal(m[i], factor*standev[i], (1,1))
93
 
94
  net = "model_"+str(uuid.uuid4())[:4]+".pt"
95
 
 
89
  # sample
90
  sample = torch.zeros([1, 1000]).to(device)
91
  for i in range(1000):
92
+ sample[0, i] = torch.normal(m[i], standev[i], (1,1))
93
 
94
  net = "model_"+str(uuid.uuid4())[:4]+".pt"
95