Maximum variable size is exceeded when training neural network
이전 댓글 표시
Hi,
I've been trying to train a neural network using an input matrix of size 1558x2787, mostly containing boolean values and a target matrix of size 2x2787, the problem is that I'm getting an error saying that "the maximum variable size is exceeded" when I try to train the network! I'm running the student version on 64-bit OS. Can you please help with that? Thanks!
답변 (1개)
Greg Heath
2013년 5월 14일
0 개 추천
Reduce the number of input variables.
1.You could start by just randomly dividing the N = 1558 dimensional data into M (~10?) disjoint subsets with a smaller No. (~156 ?) of input variables.
2. Next standardize (zero-mean/unit-variance) each subset and use the stepwisefit linear model to choose a smaller subset.
3. Combine the 10 smaller subsets and either repeat the reduction with stepwisefit or proceed directly to designing a net.
Hope this helps.
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!