Skip to content

Commit

Permalink
Updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
bluesheeptoken committed Apr 3, 2019
1 parent 83d04e2 commit 59928f8
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,7 @@ from sklearn.model_selection import GridSearchCV

class SKCpt(Cpt, BaseEstimator):
def __init__(self, split_length=0, noise_ratio=0, MBR=0):
super().__init__(split_length)
self.noise_ratio = noise_ratio
self.MBR = MBR

def predict(self, sequences):
return super().predict(sequences, self.noise_ratio, self.MBR)
super().__init__(split_length, noise_ratio, MBR)

def score(self, X):
# Choose your own scoring function here
Expand Down

0 comments on commit 59928f8

Please sign in to comment.