Shikun commited on
Commit
a6b2dc6
·
1 Parent(s): 68e45ab

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -105,8 +105,8 @@ def download_button(object_to_download, download_filename, button_text, file_ext
105
  return dl_link
106
 
107
  def perturb_array(x):
108
- lower_bounds = x * 0.97
109
- upper_bounds = x * 1.03
110
  return np.random.uniform(lower_bounds, upper_bounds)
111
 
112
 
 
105
  return dl_link
106
 
107
  def perturb_array(x):
108
+ lower_bounds = x * 0.997
109
+ upper_bounds = x * 1.003
110
  return np.random.uniform(lower_bounds, upper_bounds)
111
 
112