Skip to content

Commit 0fff286

Browse files
Merge pull request #505 from Saransh-cpp/typos
Minor typos in API Documentation
2 parents fa85b1b + 78a1c51 commit 0fff286

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/solvers/pinns.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ List of training strategies that are available now:
5454
`dx` is a scalar, then `dx` corresponds to the spacing in each direction. If `dx`
5555
is a vector, then it should be sized to match the number of dimensions and corresponds
5656
to the spacing per direction.
57-
- `StochasticTraining(points:bcs_points = ponits)`: `points` is number of stochastically sampled points from the domain,
57+
- `StochasticTraining(points;bcs_points = points)`: `points` is number of stochastically sampled points from the domain,
5858
`bcs_points` is number of points for boundary conditions(by default, it equals `points`).
5959
In each optimization iteration, we randomly select a new subset of points from a full training set.
60-
- `QuasiRandomTraining(points;bcs_points = ponits, sampling_alg = UniformSample(), resampling = true, minibatch=500)`:
60+
- `QuasiRandomTraining(points;bcs_points = points, sampling_alg = UniformSample(), resampling = true, minibatch=500)`:
6161
The training set is generated on quasi-random low discrepency sequences.
6262
`points` is the number of quasi-random points in every subset or set, `bcs_points` is number of points for boundary conditions(by default, it equals `points`), `sampling_alg` is the quasi-Monte Carlo sampling algorithm. `if resampling = false`, the full training set is generated in advance before training, and at each iteration, one subset is randomly selected out of the batch.`minibatch` is the number of subsets in full training set.
6363
The number of the total points is `length(lb) * points * minibatch`, where `lb` is the lower bound and `length(lb)` is the dimensionality.

0 commit comments

Comments
 (0)