Réponse apportée
How I can calculate prediction interval for neural network
Assume errors are Gaussian distributed with zero mean and std = sqrt(mse). Hope this helps. *Thank you for formally accept...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
net reusing
With the current set of net creation functions ( e.g., fitnet, patternnet, feedforwardnet,...) weight initialization does not o...

plus de 12 ans il y a | 1

Réponse apportée
what should be correct format of feature vectors matrix for feeding into neural networks?
For classification of c classes use N pairs of I-dimensional column vector inputs and O-dimensional outputs with O = c.. The out...

plus de 12 ans il y a | 3

| A accepté

Réponse apportée
How many times should I re-train my images in nprtool ?
Data = Designdata + Testdata Designdata = Trainingdata + Validationdata % Performance estimates are BIASED If the data set...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
How much number of hidden neurons should I take in nprtool ?
It is always best to 1. Accept all defaults 2. Run 3. Evaluate the non-training validation and test results 4. If sat...

plus de 12 ans il y a | 1

| A accepté

Réponse apportée
how to input different variables as input in Neural Network
Use an input matrix, x, with N 4-dimensiomal column vectors. Use a target matrix, t, with a 2-dimensional matrix of ones and ze...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
How to code up Neural Networks ?
Once you have the input matrix of N I-dimensional column vectors and target matrix of N c-dimensional column unit vectors you ca...

plus de 12 ans il y a | 0

Réponse apportée
HOW TO VIEW NO OF HIDDEN NEURONS IN A SAVED NETWORK?
1. The net diagram view(net) 2. I = size(input,1), O = size(target,1), Nw = net.numWeightElements Assuming no input o...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
Gradient Descent Neural Network
1. Image is not attached 2. Type net = net % w/o ending semicolon and find net.performanceFcn = 'mse' % i.e., the averag...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
i hv attached the script generated for 2 layer(1 hidden layer) NN , what changes do i need to make to use it for NN with more than 1 hidden layer.
hiddenLayerSize = [10 5 ] net = patternnet(hiddenLayerSize); Hope this helps. *Thank you for formally accepting my ans...

plus de 12 ans il y a | 1

| A accepté

Réponse apportée
How could I create a customised performance function for a neural network ?
You have the misleading impression that unbalanced data requires changing the minimization objective function. It does not. ...

plus de 12 ans il y a | 0

Réponse apportée
Help in viewing the output of a neural network
> Help in viewing the output of a neural network > Asked by sundar on 2 Feb 2014 at 11:01 > I used nftool in Matlab 2012 ...

plus de 12 ans il y a | 1

| A accepté

Réponse apportée
Neural Network - How to use a custom performance function
This may help: http://www.mathworks.com/matlabcentral/answers/56137-how-to-use-a-custom-transfer-function-in-neural-net-train...

plus de 12 ans il y a | 2

| A accepté

Réponse apportée
Neural Network - How to use a custom performance function
Check this out http://www.mathworks.com/matlabcentral/answers/56137-how-to-use-a-custom-transfer-function-in-neural-net-train...

plus de 12 ans il y a | 1

Réponse apportée
What is the activation function of Levenberg–Marquardt Backpropagation algorithm?
I don't think there is any limit on which differentiable performance functions are used except the output function must allow th...

plus de 12 ans il y a | 1

| A accepté

Réponse apportée
How could I create a customised performance function for a neural network ?
This may be of interest: http://www.mathworks.com/matlabcentral/answers/56137-how-to-use-a-custom-transfer-function-in-neura...

plus de 12 ans il y a | 0

Réponse apportée
How to code up Neural Networks ?
I suggest using a standard classifier with patternnet, one hidden layer, and target columns from eye(23). Use as many defaul...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
i have excel of form 7*12, i want to use this data in neural network
net = narxnet(ID,FD,H); net.divisionFcn = 'divideblock' Hope this helps. *Thank you for formally accepting ...

plus de 12 ans il y a | 1

| A accepté

Réponse apportée
sir/ madem i want to forecast the weekly rainfall using ANN technique. please give me some demo on this.
help timedelaynet doc timedelaynet help narxnet doc narxnet Also, search the NEWSGROUP and ANSWERS using timede...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
cross validation for neural network
Search the NEWSGROUP and ANSWERS using greg crossvalidation and greg cross-validation and greg cross valida...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
How would I access the weights of a trained neural network?
1. Before the double loop initialize your RNG (e.g., rng(0) ). From this you can deduce the state of the RNG before loop (nopt,H...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
How to train the neural network using RBF?
1. When you create newrb it automatically trains itself without the trn/val/set data division. Therefore, only include the train...

plus de 12 ans il y a | 2

Réponse apportée
What is the difference between 'divideblock' and 'divideint'?
Have you tried using the help and doc commands? Have you tried using simple examples without the ending semicolon? help d...

plus de 12 ans il y a | 1

| A accepté

Réponse apportée
How to code up Neural Networks ?
I am confused by your question "Is there a need of nprtool to do that? Please clarify that statement. Comment The f...

plus de 12 ans il y a | 0

Réponse apportée
How to change Neural Network performance from MSE to MAE?
clear all; format compact load ShotData; % Contains A and B. %What are size(A) and size(B)? [rA cA] = size(A) [rB cB ] ...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
Can somebody explain me how to use "divideind"??
{close all, clear all, clc [ x, t ] = simpleclass_dataset; [ I N ] = size(x) % [ 2 1000] [ O N ] = size(t)...

plus de 12 ans il y a | 1

Réponse apportée
Can somebody explain me how to use "divideind"??
Your original problem of nonrepeatibility is easily solved by initializing the RNG before it is used to divide data or initial...

plus de 12 ans il y a | 1

Réponse apportée
Prediction of future values using narnet
% The code: ==>When posting should reformat to have one code statement per line if true ==> What does that stateme...

plus de 12 ans il y a | 1

| A accepté

Réponse apportée
How can I handle larger powers of 10 like 10^800 in MATLAB?
Use normalization and/or logarithms. *Thank you for formally accepting my answer* Greg

plus de 12 ans il y a | 0

Réponse apportée
Time Series Ahead Prediction in Neural Network, Large Scale Iterative Training
1. You can only predict as far as the target has significant autocorrelation lags and/or the input and target have significant c...

plus de 12 ans il y a | 0

| A accepté

Charger plus