Simple Neural network binary predictor
이전 댓글 표시
How can I change t x and t or simplefir_dataset from the code below to multiple inputs such as:
x = 000 , t = 0
x = 001, t = 0
...
x = 1, 1, 0, t = 1
...
(How can I make my own dataset?)
[x,t] = simplefit_dataset;
net = feedforwardnet(10);
net = train(net,x,t);
view(net)
y = net(x);
perf = perform(net,y,t)
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Define Shallow Neural Network Architectures에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!