Réponse apportée
Is there any downside of pruning your neural network?
Nets with one hidden layer can be universal approximators. From 1979 to 2003 I used FORTRAN to design 2 class classifiers. T...

plus de 10 ans il y a | 1

| A accepté

Réponse apportée
how we can have multiple targets in neural network training
Construct one target matrix with four dimensional columns. If you have ten inputs construct one input matrix with ten dimensiona...

plus de 10 ans il y a | 1

Réponse apportée
How to train a feedfordward neural network with error weights
Use the command window help mse doc mse Hope this helps. *Thank you for formally accepting my answer* Greg

plus de 10 ans il y a | 0

| A accepté

Réponse apportée
RNG neural Network and outputs
I typically 1. Initialize rng once and only once before training (henever you use the rng it AUTOMATICALLY moves to anothe...

plus de 10 ans il y a | 0

Réponse apportée
Neural Network keep best weight and how to use without training
You probably have to transpose weight. Type whos weight and reread the help and doc documentation to make sure the dimen...

plus de 10 ans il y a | 0

| A accepté

Réponse apportée
How to get target data for neural networking toolbox?
Use class indices 1:4 for the classes speedbumps, potholes, roughness and goodroad. Then use the ind2vec function to ob...

plus de 10 ans il y a | 0

| A accepté

Réponse apportée
How can I get predicted values from an open-loop Narxnet following other predicted values? Or is just possible with closed loop?
Using the openloop configuration requires a target input. When you run out of target data you have to use the closeloop configur...

plus de 10 ans il y a | 0

| A accepté

Réponse apportée
does anybody ever use neural network to do a prediction with regularization optimization instead of early stopping?
% Thank you so much, Greg. I should have posted my question earlier, it really helps a lot! %I did not run several multiple t...

plus de 10 ans il y a | 0

Réponse apportée
Problematic Ordinal Input Categorical Output Neural Network
1. It looks like you can delete the above equations because they are defaults. 2. You definitely need to substantially reduce...

plus de 10 ans il y a | 0

| A accepté

Réponse apportée
How can I solve this equation a*x^2+b*x+c=0 with neural network (toolbox)
Neural networks learn fixed weights from multiple input/output examples. [ 0, b c ] => [ -b/c ; NaN ] [ a; b; c ] =...

plus de 10 ans il y a | 0

Réponse apportée
Manually reproduce results from a neural network generated from Matlab
Type "whos" to see the dimensionality of all variables and parameters. % help newpr % doc newpr % Obsoleted in R2010b NN...

plus de 10 ans il y a | 0

| A accepté

Réponse apportée
does anybody ever use neural network to do a prediction with regularization optimization instead of early stopping?
GEH1=' Predictions are performed with timeseries functions' GEH2=['You are using FITNET which is used for REGRESSION and CURV...

plus de 10 ans il y a | 0

| A accepté

Réponse apportée
does anybody ever use neural network to do a prediction with regularization optimization instead of early stopping?
Compare your own code with numerical results from a. A modification of the simpler code in the documentation help fit...

plus de 10 ans il y a | 0

Réponse apportée
Using PNN neural network method or by using RBF radial basis function, what would be the spread value? Which one will provide best result PNN or RBF
Try looking at some of my NEWRB posts in BOTH the NEWSGROUP and ANSWERS. newrb greg Probably looking at the most recent o...

plus de 10 ans il y a | 0

| A accepté

Réponse apportée
How to use MATLAB's neural network tool box for minibatch gradient descent?
True to his word, Dr. Heath has posted http://www.mathworks.com/matlabcentral/newsreader/view_thread/344511#943659 Hope t...

plus de 10 ans il y a | 0

| A accepté

Réponse apportée
How can I predict future output based on input data using neural network?
y =net(x); Hope this helps, *Thank you for formally accepting my answer* Greg

plus de 10 ans il y a | 0

Réponse apportée
Correlation of input variables in ANN
Matlab can handle highly correlated inputs. However, if you want to interpret the output in terms of the inputs, you can recursi...

plus de 10 ans il y a | 1

| A accepté

Réponse apportée
How to use MATLAB's neural network tool box for minibatch gradient descent?
There is no problem; Train in a loop. However, do not configure or initialize the net between the minibatches of training data....

plus de 10 ans il y a | 1

Réponse apportée
Non-linear parameter estimation (least squares)
Always begin searches with the lookfor command. Follow up with help and doc >> lookfor 'least square' lscov - Least square...

plus de 10 ans il y a | 0

| A accepté

Réponse apportée
How to forecast next 20 points with NARX neural net?
0. I ran your code with the RNG initialization statement rng('default') just before the training command. The results we...

plus de 10 ans il y a | 0

| A accepté

Réponse apportée
DESIGNING AN ELMAN NET PROJECT
See above

plus de 10 ans il y a | 0

| A accepté

Réponse apportée
how to create large dataset to train neural network for software fault prediction?
For N O-dimensional output targets corresponding to N I-dimensional inputs [ I N ] = size(input) [ O N ] = size(target) ...

plus de 10 ans il y a | 0

Réponse apportée
NARXNET with input delay
No. TIMEDELAYNET is used to predict an output series, y, using an exogeneous external input series x. NARXNET is used to ...

plus de 10 ans il y a | 0

| A accepté

Réponse apportée
Neural Network result offset by one
1. Since I always use a. t and y to denote target and output b. subscripts "o" and "c" to denote "o"penloop ...

plus de 10 ans il y a | 0

| A accepté

Réponse apportée
The best Ann configuration
Insuffient information and explanation: size(input) ? size(target) ? If I guess both are [ 1 N ] , Ntrn ~ 0.7*N and Hub ...

plus de 10 ans il y a | 1

Réponse apportée
Neural Network Input Size and Data Issue - HELP
You are making this harder than it is. For the 1st time through all you have to specify is 1. Type of network a fitnet fo...

plus de 10 ans il y a | 0

| A accepté

Réponse apportée
problem with feed-forward backpropogation
size(data ) = [ 1 1500 ] input = data(1:end-3); target = data(4 : end); Hope this helps *Thank you for formally acc...

plus de 10 ans il y a | 0

| A accepté

Réponse apportée
which type of input to be given to the neural network
For N I-dimensional Inputs yielding N O-dimensional Outputs [ I N ] = size(input) [ O N ] = size(target) Hope this help...

plus de 10 ans il y a | 0

Réponse apportée
How can I train multiple sequences in neural network using feedforwardnet?
close all, clear all, clc [ X0 T0 ] = simplenarx_dataset; X(1,:) = X0(1:end-2); X(2,:) = X0(2:end-1); X(3,:) = T0(1:end-2...

plus de 10 ans il y a | 2

| A accepté

Réponse apportée
how can I give input to the neural network in the matrix form?
For N I-dimensional input / O-dimensional target pairs [ I N ] = size(input) [ O N ] = size(target) Hope this helps ...

plus de 10 ans il y a | 0

Charger plus