DeepNetworkDesigner上でのImageDatastoreラベル変数型の変更について
3 views (last 30 days)
Show older comments
DAIKI OTAKI
on 24 Feb 2021
Commented: DAIKI OTAKI
on 24 Feb 2021
DeepNetworkDesigner上でのImageDatastoreインポート時,ラベルをcategorical変数にする必要があるようですが,数値データ(double型など)を用いてDeepNetworkDesigner上で回帰プログラムを作成することは可能でしょうか
0 Comments
Accepted Answer
Shunichi Kusano
on 24 Feb 2021
combinedDatastoreを使えば可能です。下記のサンプルを例にとりますと、combinedDatastoreを使うと、下のスクリプトのように書けます。
[XTrain,~,YTrain] = digitTrain4DArrayData;
imdsTrain = arrayDatastore(XTrain,"IterationDimension",4,"ReadSize",1);
YTrain = rescale(YTrain); % -45度から45度となっているので、0-1に正規化
featdsTrain = arrayDatastore(YTrain,"IterationDimension",1,"ReadSize",1);
cdsTrain = combine(imdsTrain,featdsTrain);
あとは、deepnetworkdesinger上でデータを指定する際にワークスペース上のcdsTrainを選べば大丈夫です。
More Answers (0)
See Also
Categories
Find more on categorical 配列 in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!