Preparing data for regression using deep neural network
조회 수: 3 (최근 30일)
이전 댓글 표시
Hi,
I'm trying to implement a deep neural network for regression with hand-crafted features as the network input. I'm trying to use the Deep Network Designer to achieve this. The network archiecture is similar to the diagram below:
- Each input/feature is a scalar array of length 14751, and there are 9 inputs/features alogether,
- there is one output, again a scalar array of length 14751,
- and there are 4 samples altogether.
- See the data attached.
load data.mat;
inputSize = length(inputs)
[~, numSamples] = size(output) % where each column represents a different sample
exampleInput = inputs{1,1};
size(exampleInput)
Can someone please advise how I can go about preparing the raw data in Datastore format which can be loaded in to Deep Network Designer?
댓글 수: 3
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Image Data Workflows에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
