Skip to content

Commit

Permalink
feat: add scores_metrics property to abstract StructuredDataset class
Browse files Browse the repository at this point in the history
  • Loading branch information
liamj2311 committed May 13, 2024
1 parent 2abab38 commit ae3bdcd
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions aequitas/core/datasets/structured_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,8 @@ def __init__(self,
@abstractmethod
def metrics(self):
raise NotImplementedError

@property
@abstractmethod
def scores_metrics(self):
raise NotImplementedError

0 comments on commit ae3bdcd

Please sign in to comment.