Home > Mobile >  Confusion matrix ix not giving correct result
Confusion matrix ix not giving correct result

Time:12-25

two types of csv files i.e train.csv(29968 samples ) and test.csv(14980 samples) both the dataset contain following attributes: id: unique id for a news article title: the title of a news article author: author of the news article text: the text of the article; could be incomplete status: a status that marks the article as potentially unreliable 1: Fake 0: real  program is working fine but not giving appropriate results for confusion matrix.

CodePudding user response:

usually confusion matrix gives the data for the given test samples. you should get confusion matrix for the test samples(14980 samples) only.

  • Related