webセミナー センサーデータ解析のためのニューラルネットワーク 未知のデータに対する分類の方法について
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
センサーデータ解析のためのニューラルネットワークのプログラムを参考にしていますが、 分類したいのは未知のデータ(ラベルが付いていない、ベクトルデータ)に対する分類です。 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 commentaires
mizuki
le 26 Sep 2018
- センサーデータ解析のためのニューラルネット(Neural Network for Sensor Data Analysis) https://jp.mathworks.com/matlabcentral/fileexchange/64268
Réponses (0)
Voir également
Catégories
En savoir plus sur Deep Learning Toolbox dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!