File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -31,7 +31,8 @@ class LinearRegressorTransformer(
3131 """
3232 Linear regressor.
3333
34- Note: `partial_fit` is not 'partial'. It fully resets the model using the entirety of the SampleMessage provided.
34+ Note: `partial_fit` is not 'partial'. It fully resets the model using the entirety of the
35+ SampleTriggerMessage in the input message's "training" attrs.
3536 If you require adaptive fitting, try using the adaptive_linear_regressor module.
3637 """
3738
Original file line number Diff line number Diff line change @@ -356,7 +356,7 @@ class LRRUnit(
356356 """ezmsg Unit wrapping :class:`LRRTransformer`.
357357
358358 Follows the :class:`BaseAdaptiveDecompUnit` pattern — accepts
359- :class:`AxisArray` (not :class:`SampleMessage`) for self-supervised
359+ :class:`AxisArray` for self-supervised
360360 training via ``INPUT_SAMPLE``.
361361 """
362362
Original file line number Diff line number Diff line change @@ -185,7 +185,7 @@ def xy_gen(set: int = 0):
185185
186186 # Train: This is unrealistic in that we would normally do inference on many axisarray messages throughout
187187 # the trial, and only do training infrequently at the end of a trial if we can infer the labels.
188- # But I'm too lazy to split the data into many small axarrs and one large SampleMessage per trial .
188+ # But I'm too lazy to split the data into many small AxisArrays and one large labeled AxisArrays-with-triggers .
189189 proc .partial_fit (sample_msg )
190190
191191 def eval_test (processor , set : int = 1 ):
You can’t perform that action at this time.
0 commit comments