How to calculate accuracy, F1 score & entropy?

조회 수: 16 (최근 30일)
Durlov Rahman
Durlov Rahman 2021년 8월 23일
답변: Ram Patro 2021년 12월 9일
Here is my data ""
Now I have to split this dataset into 70% training set & 30% test set....
Then I have to calculate accuracy, F1 score & entropy using some classifiers. They are Decision tree, knn, svm
How can I do this? Please help
  댓글 수: 1
Yazan
Yazan 2021년 8월 23일
This is not a question, but rather an assignment. See Mathworks examples on the Statistics and Machine Learning Toolbox.

댓글을 달려면 로그인하십시오.

답변 (1개)

Ram Patro
Ram Patro 2021년 12월 9일
The data you have provided does not contain class label information. When you have the class label vector 'classLabel', you can partition data using cvpartition function.
per = 10; % Training percentage
cv = cvpartition(classLabel,HoldOut=1-(per/100));
'cv.training' lists all the training location indices that you can use to partition the data. Similarly '~cv.training' lists all the testing location indices.
For classification, you can refer to the examples:
  • fitctree function for decision tree classifier.
  • fitcknn function for K- neareset neighbour classifier
  • fitcsvm function for binary models of SVM classification
  • fitcecoc function for multiclass models of SVM classification.
After obtaining your classification results, you can refer:

카테고리

Help CenterFile Exchange에서 Classification Trees에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by