diff --git a/sleap_io/model/labeled_frame.py b/sleap_io/model/labeled_frame.py index 547632ae..c771d49f 100644 --- a/sleap_io/model/labeled_frame.py +++ b/sleap_io/model/labeled_frame.py @@ -44,7 +44,7 @@ def user_instances(self) -> list[Instance]: @property def predicted_instances(self) -> list[Instance]: - """Frame instances that are user-labeled (`PredictedInstance` objects).""" + """Frame instances that are predicted by a model (`PredictedInstance` objects).""" return [inst for inst in self.instances if type(inst) == PredictedInstance] def numpy(self) -> np.ndarray: