webセミナー センサーデータ解析のためのニューラルネットワーク 未知のデータに対する分類の方法について
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
センサーデータ解析のためのニューラルネットワークのプログラムを参考にしていますが、 分類したいのは未知のデータ(ラベルが付いていない、ベクトルデータ)に対する分類です。 classifyUsingPatternNet.mの 21行目でテストデータを変換して、34行目の性能評価をしていますが、 未知のデータ(加速度データx,y,z)を分類する場合、どのようなコードを作成すればよいのでしょうか。 最後にplotconfusion(TB, TBHat);でテストラベルと予測を比較していますが、未知データはラベルがないので比較ができないと思います。
%%データ変換
XB = [dataB.ax dataB.ay dataB.az];
XB = XB';
TB = dataB.t;
TB = full(ind2vec(TB'));
%%性能評価
TBHat = net(XB);
plotconfusion(TB, TBHat);
2 Kommentare
mizuki
am 26 Sep. 2018
- センサーデータ解析のためのニューラルネット(Neural Network for Sensor Data Analysis) https://jp.mathworks.com/matlabcentral/fileexchange/64268
Antworten (0)
Siehe auch
Kategorien
Mehr zu Deep Learning Toolbox finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!