You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@
20
20
21
21
------
22
22
23
-
**🔥🔥🔥Did you know that neurodiffeq supports solution bundles and can be used to solve reverse problems? [See here](#Solution Bundle and Reverse Problems)!**
23
+
**🔥🔥🔥Did you know that neurodiffeq supports solution bundles and can be used to solve reverse problems? [See here](#solution-bundle-and-reverse-problems)!**
24
24
25
25
:mortar_board:**Already familiar with neurodiffeq?**:point_down:**[Jump to FAQs](#faq).**
26
26
@@ -274,7 +274,7 @@ Here's an example of how to do this using `neurodiffeq`:
274
274
275
275
```python
276
276
T_MIN, T_MAX=0, 1
277
-
LAMBDA_MIN, LAMBDA_MAX=3, 5# first parameter, index = 0
277
+
LAMBDA_MIN, LAMBDA_MAX=3, 5# first parameter, index = 0
278
278
U0_MIN, U0_MAX=0.2, 0.6# second parameter, index = 1
279
279
```
280
280
@@ -286,7 +286,7 @@ Here's an example of how to do this using `neurodiffeq`:
286
286
287
287
# The keyword argument must be named "u_0" in BundleIVP. If you use anything else, e.g. `y0`, `u0`, etc., it won't work.
288
288
conditions = [
289
-
BundleIVP(t_0=0, u_0=None, bundle_param_lookup={'u_0': 1}) # u_0 has index 1
289
+
BundleIVP(t_0=0, u_0=None, bundle_param_lookup={'u_0': 1}) # u_0 has index 1
290
290
]
291
291
292
292
solver = BundleSolver1D(
@@ -295,7 +295,7 @@ Here's an example of how to do this using `neurodiffeq`:
295
295
t_min=T_MIN, t_max=T_MAX,
296
296
theta_min=[LAMBDA_MIN, U0_MIN], # λ has index 0; u_0 has index 1
297
297
theta_max=[LAMBDA_MAX, U0_MAX], # λ has index 0; u_0 has index 1
298
-
eq_param_index=(0,), # λ is the only equation parameter, which has index 0
298
+
eq_param_index=(0,), # λ is the only equation parameter, which has index 0
0 commit comments