Is there anyway I can route back my predicted result to original comment after text classification using 10-fold cross validation?
From the result of 2000 comments of class non-sarc and sarc:
inst#,actual,predicted,error,prediction
1,2:non-sarc,2:non-sarc,,1
2,2:non-sarc,1:sarc,+,1
3,2:non-sarc,2:non-sarc,,1
4,2:non-sarc,2:non-sarc,,1
5,2:non-sarc,2:non-sarc,,1
.
.
101,1:sarc,1:sarc,,1
102,1:sarc,2:non-sarc,+,1
103,1:sarc,1:sarc,,1
104,1:sarc,1:sarc,,1
105,1:sarc,1:sarc,,1
.
.
It looks like weka has re-arranged my comment to class split before hold out for training and testing. How can i refer back this result to original comments which are not in sequence order (not like after 10-fcv)? I've try re-arranged the comment to class sequence of non-sarc and sarc but I'm confuse which one test/training first, is it first fold test first, or last fold test first, or any other?
Thanks in advance.
Since no one answered my question and I've figured myself, hope this will help others if facing the same issue.
All the best!