first time posting a question so go easy on me.
I found some code online that i am trying to implement myself though i keep coming across this error
ValueError: not enough values to unpack (expected 3, got 2)
the code is as follows:
for i,feats,label in enumerate(testfeats):
refsets[label].add(i)
observed = classifier.classify(feats)
testsets[observed].add(i)
If you can help me out this would be great :)