Closed Charmve closed 9 months ago
I think in clairvoyant/clairvoyant/engine.py in line 16
def __init__(self, **kwargs):
self.kwargs = kwargs
self.svc = SVC(probability=True, **kwargs)
position of **kwargs
should be first and then probability=True
like this
def __init__(self, **kwargs):
self.kwargs = kwargs
self.svc = SVC(**kwargs, probability=True)
Hi, Some errors appeared unusually.
I used the example code to test environment. But, when I use the library,
SyntaxError: invalid syntax
note appeared.test.py