Do you have any special learning algorithm for binary inputs?
조회 수: 1 (최근 30일)
이전 댓글 표시
I am using neural network tool box to prove a concept. I like to use binary inputs for my learning. Do we have any special learning algorithm available for binary inputs? (OR how should I modify this call (change any arguments for BI inputs?);
newff(xll',y_learn,[20],{'tansig','tansig'},'trainbfg','learngdm','msereg');
to fit a binary inputs)
I m using as follows:
NETff = newff(xll',y_learn,[20],{'tansig','tansig'},'trainbfg','learngdm','msereg');
NETff.trainParam.epochs = 100000;
NETff.trainParam.goal = 0.00001;
NETff= train(NETff,xll',y_learn);
Yff = sim(NETff,xll');
Where xll’ is a binary number, eg: 1010101010
Thanks.
Jude
댓글 수: 0
채택된 답변
Greg Heath
2013년 1월 17일
편집: Walter Roberson
2013년 1월 18일
I have given a graciously lengthy answer to your questions in your Newsgroup Thread
Subject: Neural Network with Binary Inputs
From: Jude
Date: 16 Jan, 2013 19:40:09
Hope this helps.
Thank you for graciously accepting my answer.
Greg
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!