Browse code

credit Pauli Virtanen in Learner2D

Bas Nijholt authored on 07/09/2017 11:03:55
Showing 1 changed files
... ...
@@ -595,7 +595,7 @@ class Learner2D(BaseLearner):
595 595
 
596 596
     Notes
597 597
     -----
598
-    Requires Scipy >= 0.9.0.
598
+    Adapted from an initial implementation by Pauli Virtanen.
599 599
 
600 600
     The sample points are chosen by estimating the point where the
601 601
     linear and cubic interpolants based on the existing points have
... ...
@@ -609,11 +609,6 @@ class Learner2D(BaseLearner):
609 609
 
610 610
     This sampling procedure is not extremely fast, so to benefit from
611 611
     it, your function needs to be slow enough to compute.
612
-
613
-    Examples
614
-    --------
615
-    See below.
616
-
617 612
     """
618 613
 
619 614
     def __init__(self, function, bounds, dtype=float):