(self, results_objects)
| 64 | raise NotImplementedError(f"Subclass of abstract Benchmark class need to define the {key} property.") |
| 65 | |
| 66 | def compute_pose_rmse(self, results_objects): |
| 67 | return deeplabcut.benchmark.metrics.calc_rmse_from_obj( |
| 68 | results_objects, h5_file=self.ground_truth, metadata_file=self.metadata |
| 69 | ) |
| 70 | |
| 71 | def compute_pose_map(self, results_objects): |
| 72 | return deeplabcut.benchmark.metrics.calc_map_from_obj( |