from sklearn.svm import LinearSVC
from sklearn.metrics import accuracy_score
model=LinearSVC()
model.fit(train_x,train_y)
previsoes= model.predict(test_x)
acuracia= accuracy_score=(test_y,previsoes)*100
print("A acurácia foi %.2f%%" % acuracia)
ao tentar executar o código recebo os seguintes avisos
TypeError Traceback (most recent call last)
<ipython-input-37-7caa3ad96dfc> in <module>()
6
7 acuracia= accuracy_score=(test_y,previsoes)*100
----> 8 print("A acurácia foi %.2f" % acuracia)
/usr/local/lib/python3.6/dist-packages/pandas/core/series.py in wrapper(self)
127 if len(self) == 1:
128 return converter(self.iloc[0])
--> 129 raise TypeError(f"cannot convert the series to {converter}")
130
131 wrapper.__name__ = f"__{converter.__name__}__"
TypeError: cannot convert the series to <class 'float'>
o que devo fazer?