Skip to content

Commit 725a794

Browse files
committed
Update classification_model.py
1 parent bbad788 commit 725a794

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/sdqc_check/classification/classification_model.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import warnings
2+
from abc import ABC
23
from typing import Optional, Dict, Union, List, Tuple
34

45
import pandas as pd
@@ -21,7 +22,7 @@
2122
warnings.filterwarnings('ignore')
2223

2324

24-
class ClassificationModel:
25+
class ClassificationModel(ABC):
2526
"""
2627
A class for training and evaluating binary classification models to distinguish between real and synthetic data.
2728

0 commit comments

Comments
 (0)