nailo2c/deeplog

Mistake in predict.py

Closed this issue · 1 comments

elif p == 0 and t == 1:
FN += 1
else:
TN += 1

Shouldn't it be the other way around?

elif p == 0 and t == 1:
	TN +=1
else:
	FN += 1

Nvm braindead