de-Rodrigo commited on
Commit
2851084
·
1 Parent(s): 3b75e5a

Test Grid Size

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -1511,7 +1511,7 @@ def run_model(model_name):
1511
  # Definir un rango fijo para los ejes (por ejemplo, de -1 a 1) y rejilla
1512
  x_min, x_max = -10, 10
1513
  y_min, y_max = -10, 10
1514
- grid_size = 500
1515
  x_bins = np.linspace(x_min, x_max, grid_size + 1)
1516
  y_bins = np.linspace(y_min, y_max, grid_size + 1)
1517
 
 
1511
  # Definir un rango fijo para los ejes (por ejemplo, de -1 a 1) y rejilla
1512
  x_min, x_max = -10, 10
1513
  y_min, y_max = -10, 10
1514
+ grid_size = 200
1515
  x_bins = np.linspace(x_min, x_max, grid_size + 1)
1516
  y_bins = np.linspace(y_min, y_max, grid_size + 1)
1517