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
@@ -14,10 +14,10 @@ of the physics-informed neural network which is used as a solver for a standard
14
14
15
15
## Positional Arguments
16
16
17
-
* `chain`: A neural network architecture, defined as a `Lux.AbstractExplicitLayer` or `Flux.Chain`.
17
+
* `chain`: A neural network architecture, defined as a `Lux.AbstractExplicitLayer` or `Flux.Chain`.
18
18
`Flux.Chain` will be converted to `Lux` using `adapt(FromFluxAdaptor(false, false), chain)`.
19
19
* `opt`: The optimizer to train the neural network.
20
-
* `init_params`: The initial parameter of the neural network. By default, this is `nothing`
20
+
* `init_params`: The initial parameter of the neural network. By default, this is `nothing`
21
21
which thus uses the random initialization provided by the neural network library.
22
22
23
23
## Keyword Arguments
@@ -28,8 +28,8 @@ of the physics-informed neural network which is used as a solver for a standard
28
28
automatic differentiation (via Zygote), this is only for the derivative
29
29
in the loss function (the derivative with respect to time).
30
30
* `batch`: The batch size for the loss computation. Defaults to `true`, means the neural network is applied at a row vector of values
31
-
`t` simultaneously, i.e. it's the batch size for the neural network evaluations. This requires a neural network compatible with batched data.
32
-
`false` means which means the application of the neural network is done at individual time points one at a time.
31
+
`t` simultaneously, i.e. it's the batch size for the neural network evaluations. This requires a neural network compatible with batched data.
32
+
`false` means which means the application of the neural network is done at individual time points one at a time.
33
33
This is not applicable to `QuadratureTraining` where `batch` is passed in the `strategy` which is the number of points it can parallelly compute the integrand.
34
34
* `param_estim`: Boolean to indicate whether parameters of the differential equations are learnt along with parameters of the neural network.
35
35
* `strategy`: The training strategy used to choose the points for the evaluations.
0 commit comments