Réponse apportée
Hi all am new to Matlab and want guide
If you have a choice, do not use GA to train NNs if you are not familiar with NNs. There are no good examples for reference. ...

plus de 11 ans il y a | 2

| A accepté

Réponse apportée
Data Scaling in Neural Network
help mapstd doc mapstd help mapminmax doc mapminmax Hope this helps. *Thank you for formally accepting my answ...

plus de 11 ans il y a | 2

| A accepté

Réponse apportée
Sum of coins using neural network
Inappropriate application of a NN. Check out NN example data using the line commands help nndatasets doc nndatasets Che...

plus de 11 ans il y a | 1

| A accepté

Réponse apportée
Questions about time series prediction using nstool
Cannot help with nstool. However I have posted tens of command line examples in the NEWSGROUP and ANSWERS. Just add greg to your...

plus de 11 ans il y a | 1

| A accepté

Réponse apportée
Neural network
No. NARX is for predicting future values. For current values use FITNET.

plus de 11 ans il y a | 1

Réponse apportée
Neural network toolbox - initialize the weights and biases with INITZERO:
clear all, clc [ X,T ] = maglev_dataset; net = narxnet; [ Xs Xi Ai Ts ] = preparets(net,X,{},T); ts ...

plus de 11 ans il y a | 1

| A accepté

Réponse apportée
[NEURAL NETWORK] How can I make MSE be the same in different trying times ?
Initialize the state of the random number generator ONCE AND ONLY ONCE before the random data division and random weight initial...

plus de 11 ans il y a | 1

| A accepté

Réponse apportée
[NEURAL NETWORK] How can I make MSE be the same in different trying times ?
Remove the underscores at the beginning and end. Use net.divideFcn = 'dividetrain' to automatically get the (1/0/0) data divi...

plus de 11 ans il y a | 0

Réponse apportée
how to train neural network using 3D matrix or some 2D matrix
I cannot understand your post. However, if you have N examples of I-dimensional input column vectors and the corresponding N exa...

plus de 11 ans il y a | 1

| A accepté

Réponse apportée
How to have multiple targets in a neural network?
For N examples of O outputs corresponding to N examples of I inputs [I N ] = size(input) [O N ] = size(target) Howeve...

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
how to convert this to r2013 a code
1. This is MATLAB, a MATtrix LAnguage. Typically, loops are unnecessary. If theta, etc are row vectors, use P = [ theta; psi...

plus de 11 ans il y a | 1

| A accepté

Réponse apportée
neural network for classification feature extraction
The best nonlinear features are usually found from some knowledge of the physical or mathematical nature of the problem. So, ...

plus de 11 ans il y a | 1

| A accepté

Réponse apportée
[Neural Network]How to show the importance of "trainlm"?
I did not fully understand your post. However, if you want to display your weights use IW = net.IW{1,1} b = net.b{:} LW...

plus de 11 ans il y a | 1

| A accepté

Réponse apportée
Neural network input -output problem
Try transposing your matrices Hope this helps Greg

plus de 11 ans il y a | 2

Réponse apportée
Neural network toolbox initialize the weights and biases (accepted answer: control random number generator)
Explicitly initialize the random number state before configuring or training. Most of my posted designs use one of the following...

plus de 11 ans il y a | 3

| A accepté

Réponse apportée
How can I improve the performance prediction of a net in extrapolation
Use whatever info you have to fabricate additional data.

plus de 11 ans il y a | 1

| A accepté

Réponse apportée
Neural Network Performance function for classification problem
It is always best to start with the examples in help patternnet doc patternnet Then I can respond to specific questio...

plus de 11 ans il y a | 2

| A accepté

Réponse apportée
no. of samples while using 'train' for a neural network
I ran your code with the pollution_dataset. The same error occurred until I placed the code after the plot function continuat...

plus de 11 ans il y a | 1

| A accepté

Réponse apportée
It is possible to create a dynamic model using radial basis function in the matlab tool box?
close all, clear all, clc, plt=0 [ X, T ] = simpleseries_dataset ; net = narxnet(0:...

plus de 11 ans il y a | 2

| A accepté

Réponse apportée
Perfomance value of a neural network.
If MSE00 = mean(var(t',1))& Average target variance a useful training goal is NMSE = mse(t-y)/ mean(var(t',1)) <= 0...

plus de 11 ans il y a | 1

| A accepté

Réponse apportée
differences between net = newff(P,T,S,TF,BTF,BLF,PF,IPF,OPF,DDF) and net = newff(PR,[S1 S2...SNl],{TF1 TF2...TFNl},BTF,BLF,PF) ?
I compared the two formats and obtained the exact same answer on version 2014a. 1. Did you run both nets using the same versi...

plus de 11 ans il y a | 1

| A accepté

Réponse apportée
Help understand the sumsqr algorithm
help sumsqr doc sumsqr type sumsqr *Thank you for formally accepting my answer* Greg

plus de 11 ans il y a | 1

| A accepté

Réponse apportée
It is possible to create a dynamic model using radial basis function in the matlab tool box?
Unfortunately, there are no options in the NNTBX that will yield this. Either modify MATLAB functions or find non-MATLAB code...

plus de 11 ans il y a | 1

Réponse apportée
how to add genetic optimization in Back propagation neural network tool box or even using commands of Matlab
Genetic optimization is the least preferred method for designing single hidden layer nets with given inputs and targets (the uni...

plus de 11 ans il y a | 1

| A accepté

Réponse apportée
How to save workspace in a for loop?
Typically I design 100 nets at a time using a double loop: 10 values of hidden nodes: h = Hmin:dH:Hmax and 10 random initial wei...

plus de 11 ans il y a | 2

| A accepté

Réponse apportée
Input selection for ANN
A very quick, non-optimal, but useful method is to use linear models with the help and doc commands on stepwisefit and sequentia...

plus de 11 ans il y a | 1

| A accepté

Réponse apportée
Help in Neural network Coding?
You are correct: Use patternnet for classification/pattern-recognition. Sorry for the oversight. Number of classes c = 8 ...

plus de 11 ans il y a | 1

Réponse apportée
How to train a neural network?
Command Line: help patternnet doc patternnet NEWSGROUP and ANSWERS search: greg patternnet Hope this helps. ...

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
How use the closed loop to predict future values
Search the NEWSGROUP and ANSWERS using greg narxnet closeloop Hope this helps. *Thank you for formally accepting my an...

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
How to perform classification
Classification with neural networks is relatively straightforward. If you have c classes of I-dimensional objects, use N examp...

plus de 11 ans il y a | 1

| A accepté

Charger plus