First of all, this is a super cool and interesting algorithm! thank you for sharing it :)
The code fails on
def decision_function(self, X):
return self.classifier.decision_function(self, X)
with an error stating that decision_function expects only one argument.
Shouldn't it be self.classifier.decision_function(X) without the self?
Cheers,
First of all, this is a super cool and interesting algorithm! thank you for sharing it :)
The code fails on
with an error stating that decision_function expects only one argument.
Shouldn't it be self.classifier.decision_function(X) without the self?
Cheers,