Deep Learning: How do I add regression ground truth data to an imageDatastore?

1 回表示 (過去 30 日間)
Tomas
Tomas 2017 年 12 月 13 日
回答済み: Daniel Cohen 2021 年 1 月 13 日
if I train my network with newnet=trainNetwork(imageDatastore_traindata,net,options) imageDatastore_traindata.Labels need to be categorical, i.e. not regression but classification labels. So for regression, it seems I need to use newnet=trainNetwork(X,Y,net,options)
and give my regression labels as Y, but then I can't use the imageDatastore as X, so I'll run into memory problems. Is there no way to do regression with an imageDatastore?
  1 件のコメント
Bashar Saad
Bashar Saad 2018 年 12 月 28 日
hi friend i have same the problem i do not know how to load my own dataset in deep learning could you help me plase ?

サインインしてコメントする。

回答 (2 件)

Amy
Amy 2017 年 12 月 19 日
You can use an image datastore to get the image file names (without having to load the images from the dataset into memory at all), then create a table with the file names in the first column and your regressors in the other columns, and feed that into trainNetwork.
(see the trainedNet = trainNetwork(tbl,layers,options) syntax for trainNetwork.)
  5 件のコメント
Simone Scaringi
Simone Scaringi 2020 年 2 月 20 日
Also joining Christoph Block with same question: i.e. is there a way to parse the tbl argument and allow the trainNetwork function to read files using e.g. a custom ReadFcn ?
Simone Scaringi
Simone Scaringi 2020 年 2 月 21 日
I've spent way too much time getting my head around this.
What I ended up doing to "fix" it, is to save my data files as .png images. In my case these are just 1D "images", but I guess you can save the 3D matrix as an image as well. If you do this then train proceeds as expected since the table with file paths have .png "images" in them.
Hope this helps to whoever reads this!

サインインしてコメントする。


Daniel Cohen
Daniel Cohen 2021 年 1 月 13 日
% trainedNet = trainNetwork(ds, layers, options) trains and returns a
% network trainedNet using the datastore ds. For single-input networks,
% the datastore read function must return a two-column table or
% two-column cell array, where the first column specifies the inputs to
% the network and the second column specifies the expected responses. For
% networks with multiple inputs, the datastore read function must return
% a cell array with N+1 columns, where N is the number of inputs. The
% first N columns correspond to the N inputs and the final column
% corresponds to the responses.
What what does that mean for this situation?

カテゴリ

Help Center および File ExchangeSupport Vector Machine Regression についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by