You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently LabelIndex in Python uses a [self._labels[i].location for i in self._indices] for creating the locations sequence.
This has the effect of creating a new list the same length for each label index upon the first function call that uses the locations. Should test the performance implications and whether there's value in using a functional Sequence class implementation i.e.
Currently LabelIndex in Python uses a
[self._labels[i].location for i in self._indices]
for creating the locations sequence.This has the effect of creating a new list the same length for each label index upon the first function call that uses the locations. Should test the performance implications and whether there's value in using a functional Sequence class implementation i.e.
The text was updated successfully, but these errors were encountered: