How to build a regression neural network from a datastore? How do i find the variable names from a datastore?

조회 수: 1 (최근 30일)
I have a combined file datastore with 5 predictor variables in 1 column and 1 objective variable in other column and row size of roughly 65000. I want to know the variable names so that i can use it to build a regression neural network. But i dont find a object function for knowing the variable names.
Also how do i use the datastore to build a regression neural network

답변 (1개)

dpb
dpb 2023년 1월 28일
편집: dpb 2023년 1월 28일
'Pends on how you created the datastore and what it was built from...if you smooshed all five variables into one column, then you probably lost the variables' indentities in doing that and are left with only one.
You would want to build the datastore maintaining the variables, not merging them.
A 5-variable, 6500-length array is nothing as far as memory; there's no need for a datastore here.
tmp=rand(6500,5);
whos tmp
Name Size Bytes Class Attributes tmp 6500x5 260000 double
That's only a 260K array...

카테고리

Help CenterFile Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by