DeepNetworkDesigner上でのImageDatastoreラベル変数型の変更について
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
DAIKI OTAKI
am 24 Feb. 2021
Kommentiert: DAIKI OTAKI
am 24 Feb. 2021
DeepNetworkDesigner上でのImageDatastoreインポート時,ラベルをcategorical変数にする必要があるようですが,数値データ(double型など)を用いてDeepNetworkDesigner上で回帰プログラムを作成することは可能でしょうか
0 Kommentare
Akzeptierte Antwort
Shunichi Kusano
am 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を選べば大丈夫です。
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu categorical 配列 finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!