building customer behavior model using neural network
이전 댓글 표시
Hi all , how can I start building a model for predicting customer behavior ? what is the steps ? how can i determine the varibels and the target output ? i have the data but i don't know how to start ! Thanks, Mai saifemai@yahoo.com or maiabdelraheem@gmail.com
답변 (1개)
Greg Heath
2016년 4월 26일
YOU have to determine what variables are reasonable to use for inputs AND what the target output should be for each input.
Then with N pairs of I-dimensional "i"nput column vectors and corresponding O-dimensional "o"utput target vectors you start with
[ I N ] = size(input)
[ O N ] = size(target)
However, before you go any further, try one or more MATLAB example data sets
help nndatasets
doc nndatasets
and start with the simple code in the help and doc documentation
help fitnet
doc fitnet
After completing two or more examples, possibly with our help, then try it with your own data.
Hope this helps.
Thank you for formally accepting my answer
Greg
카테고리
도움말 센터 및 File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!