Implementing different length arrays into Classification Learner
이전 댓글 표시
Hi all, I am new to the whole deep learning stuff and I am just looking for some clarification. I have been collecting data about machine failures, the data tends to vary in length due to the nature of how the machine fails. In order to use this data with the classification learner I have been stretching the data to equal lengths using imresize(A, [B,C], 'bilinear') and then compiling the data into 1 array. I have added an extra column in order to classify each row based on a scale of 0-100 to try predict a wear percent essentially. As I am currently still learning how to use the software I have only been using a small data pool size of 9 samples, the samples are recorded from the machine at 0% wear up to failure. Am I on the right track for implementing the classification learner?
Along with this I have used the 'All Quick-To-Train' and have got an accuracy of 85.0% with accuracy percentages on the confusion matrix around 90% at wear of 70% and above. Am I correct in thinking that I can export this model and then input data points in order to output a predicted wear level of the machine?
Thank you
댓글 수: 10
Walter Roberson
2019년 1월 7일
what kind of data is being recorded such that imresize could have a chance of being relevant ??
Jamie England
2019년 1월 7일
Walter Roberson
2019년 1월 7일
What is the second dimension ? The imresize you use resizes to fixed height and width .
Jamie England
2019년 1월 7일
Walter Roberson
2019년 1월 7일
See resample() for 1d.
Jamie England
2019년 1월 7일
Stephan
2019년 1월 8일
if you want to predict wear in a range between 0...100% maybe a regression is the better choice. Classification would mean to have 100 categorical possible results, i think.
Jamie England
2019년 1월 8일
Stephan
2019년 1월 8일
There is also a regression learner app... It is the same look and feel - should be no problem.
Jamie England
2019년 1월 8일
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Classification Learner App에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!