필터 지우기
필터 지우기

Use cell arrays with neural networks in a regression problem.

조회 수: 2 (최근 30일)
I want to use Neural Networks to predict a numeric value using text and numerical data. Here is an example:
It's a regression problem. If I try to use the Neural fitting (nftool) app, only allows use numerical data.
A solution that I can think of is to assign numerical values to each class in the text data values , but I think it is too computationally expensive , as my dataset has a size 17000x40.
Is there any way to use neural networks in a regression problem using cell data type ?

채택된 답변

Sean de Wolski
Sean de Wolski 2016년 6월 6일
편집: Sean de Wolski 2016년 6월 6일
First, convert your cell array to a table (cell2table). Tables make working with this type of data much easier.
Then, convert the cell strings to categoricals and then dummy code them using dummyvar or my dummytable, attached.
x = table(rand(3,1),{'A';'B';'C'});
x.Var2 = categorical(x.Var2);
xdummy = dummytable(x);
Xnumeric = table2array(xdummy)
  댓글 수: 2
Manuel Valenciano
Manuel Valenciano 2016년 6월 7일
I have a problem with the categorical function. Some variables of my problem are of the following type:
I want to convert it to a categorical array but the categorical function gives me the following error:
Error using categorical (line 321)
Could not find unique values in DATA using the UNIQUE function.
Caused by:
Error using cell/unique (line 85)
Input A must be a cell array of strings.
Sean de Wolski
Sean de Wolski 2016년 6월 8일
You'll need to convert the numeric values to strings first.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Pattern Recognition and Classification에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by