File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ def __setstate__(self, function):
33
33
34
34
35
35
class SequenceLearner (BaseLearner ):
36
- """A learner that will learn a sequence.
36
+ r """A learner that will learn a sequence.
37
37
38
38
This is useful when your problem cannot be formulated in terms of
39
39
another adaptive learner, but you still want to use Adaptive's
@@ -50,6 +50,12 @@ class SequenceLearner(BaseLearner):
50
50
----------
51
51
data : dict
52
52
The data as a mapping from "index of element in sequence" => value.
53
+
54
+ Notes
55
+ -----
56
+ From primitive tests, the `~adaptive.SequenceLearner` appears to have a
57
+ similar performance to `ipyparallel`\s `load_balanced_view().map`. With
58
+ the added benefit of having results in the local kernel already.
53
59
"""
54
60
55
61
def __init__ (self , function , sequence ):
You can’t perform that action at this time.
0 commit comments