Skip to content

Commit d2c586a

Browse files
committed
Update base_predictor.py
1 parent 51a2d34 commit d2c586a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

chebifier/prediction_models/base_predictor.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,12 @@
33

44

55
class BasePredictor(ABC):
6-
76
def __init__(
87
self,
98
model_name: str,
109
model_weight: int = 1,
1110
classwise_weights_path: str = None,
12-
**kwargs
11+
**kwargs,
1312
):
1413
self.model_name = model_name
1514
self.model_weight = model_weight

0 commit comments

Comments
 (0)