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):
3333
3434
3535class SequenceLearner (BaseLearner ):
36- """A learner that will learn a sequence.
36+ r """A learner that will learn a sequence.
3737
3838 This is useful when your problem cannot be formulated in terms of
3939 another adaptive learner, but you still want to use Adaptive's
@@ -50,6 +50,12 @@ class SequenceLearner(BaseLearner):
5050 ----------
5151 data : dict
5252 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.
5359 """
5460
5561 def __init__ (self , function , sequence ):
You can’t perform that action at this time.
0 commit comments