Skip to content

Commit 7c108c3

Browse files
committed
2 parents 31f441f + 519f9b6 commit 7c108c3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
------
2222

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)!**
2424

2525
:mortar_board: **Already familiar with neurodiffeq?** :point_down: **[Jump to FAQs](#faq).**
2626

@@ -274,7 +274,7 @@ Here's an example of how to do this using `neurodiffeq`:
274274

275275
```python
276276
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
278278
U0_MIN, U0_MAX = 0.2, 0.6 # second parameter, index = 1
279279
```
280280

@@ -286,7 +286,7 @@ Here's an example of how to do this using `neurodiffeq`:
286286

287287
# The keyword argument must be named "u_0" in BundleIVP. If you use anything else, e.g. `y0`, `u0`, etc., it won't work.
288288
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
290290
]
291291

292292
solver = BundleSolver1D(
@@ -295,7 +295,7 @@ Here's an example of how to do this using `neurodiffeq`:
295295
t_min=T_MIN, t_max=T_MAX,
296296
theta_min=[LAMBDA_MIN, U0_MIN], # λ has index 0; u_0 has index 1
297297
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
299299
n_batches_valid=1,
300300
)
301301
```

0 commit comments

Comments
 (0)