Browse code

add the 'LearnerND' to the README

Bas Nijholt authored on 18/07/2018 20:21:28
Showing 1 changed files
... ...
@@ -35,6 +35,7 @@ sampling are completely customizable.
35 35
 The following learners are implemented:
36 36
 * `Learner1D`, for 1D functions `f: ℝ → ℝ^N`,
37 37
 * `Learner2D`, for 2D functions `f: ℝ^2 → ℝ^N`,
38
+* `LearnerND`, for ND functions `f: ℝ^N → ℝ^M`,
38 39
 * `AverageLearner`, For stochastic functions where you want to average the result over many evaluations,
39 40
 * `IntegratorLearner`, for when you want to intergrate a 1D function `f: ℝ → ℝ`,
40 41
 * `BalancingLearner`, for when you want to run several learners at once, selecting the "best" one each time you get more points.