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!