I try to find f1_score but when I apply it, I get the above error. my code is following
from sklearn.metrics import f1_score
f1_score(t1, t2 , average=None)
t1 and t2 contain continuous values like float32 but I don't know how to convert it in a form where I can apply f1_score. The size of t1 and t2 are about ([126,189,568]) 1d vector shapes.