Spaces:
Sleeping
Sleeping
Commit ·
71bb4dd
1
Parent(s): 19aa7d3
Make the contours bigger
Browse files
backend/src/__pycache__/logic.cpython-312.pyc
CHANGED
|
Binary files a/backend/src/__pycache__/logic.cpython-312.pyc and b/backend/src/__pycache__/logic.cpython-312.pyc differ
|
|
|
backend/src/logic.py
CHANGED
|
@@ -275,7 +275,7 @@ def compute_suggested_settings(
|
|
| 275 |
w2_range = (-10, 10)
|
| 276 |
return w1_range, w2_range, []
|
| 277 |
|
| 278 |
-
width = np.max(np.abs(moore_penrose)) *
|
| 279 |
|
| 280 |
w1_range = (-width, width)
|
| 281 |
w2_range = (-width, width)
|
|
|
|
| 275 |
w2_range = (-10, 10)
|
| 276 |
return w1_range, w2_range, []
|
| 277 |
|
| 278 |
+
width = np.max(np.abs(moore_penrose)) * 2
|
| 279 |
|
| 280 |
w1_range = (-width, width)
|
| 281 |
w2_range = (-width, width)
|