How can create a neural network by hand using trained neural network data in Matlab
Afficher commentaires plus anciens
for example,following codes create a trained network in Matlab: x = 1:1:50 y = x * 3 net = newff(x,y,5) net = train(net,x,y)
so ,i can get following information from the net: net.IW,net.LW,net.b,and the default transform functions tansig and purelin. Using these information to create a neural network by hand,i find that i can not get the correct result which the function sim() provide. Is there any other important information i ignore when i create a network by hand?
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Deep Learning Toolbox dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!