Réponse apportée
How to remove outlier from training data before training artificial neural networks ?
Use zscore or mapstd to transform to zero-mean/unit-variance. Plot Decide how many standard deviations from the mean to s...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
Zero-weights initialization in feedforward network
You have to define a net via net = newff before you can assign any properties or values. With OBSOLETE functions like newff, ...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
difference between true and apparent error in neural network
Where did you find that terminology? There are several quantities that can be identified. 1. The underlying error-free I/...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
Custom transfer function much slower than standard transfer functions
Just modify the code for radbas. type radbas *Thank you for formally accepting my answer.* Greg

plus de 12 ans il y a | 0

Réponse apportée
plot the evolution of responce for every input variable of a neural network after trainning
Set 3 of the variables equal to their mean value. Then vary the other; For example input2 = [ repmat(mean(x(1,:)')',1,N); x(...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
Face recognition using back propagation network.
How many examples do you have? How many classes? The number of hidden nodes should probably be much smaller than 48 Why...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
About neural network : newbie question
There is no reason to use cells or only train for 10 epochs. Use round to convert the output to {0,1} *Thank you for for...

plus de 12 ans il y a | 1

| A accepté

Réponse apportée
problem with rng during retraining of a neural network
randperm is used without initializing the RNG. *Thank you for formally accepting my answer* Greg

plus de 12 ans il y a | 1

| A accepté

Réponse apportée
how can a I train this whitout using nftool?
help fitnet doc fitnet Use all of the defaults. Hope this helps. *Thank you for formally accepting my answer* Gr...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
problem with neural network training
Adding noise after each epoch does not sound like a very productive method. Given the number of hidden nodes, design many net...

plus de 12 ans il y a | 2

| A accepté

Réponse apportée
probabilistic neural network coding problem
1. Class 1 has 2 duplicate points and class 2 has 1 duplicate point 2. There is an 8 orders of magnitude difference between v...

plus de 12 ans il y a | 1

| A accepté

Réponse apportée
How to design a nonlinear fitting neural networks with inequility constraints using MATLAB ANN Toolbox ?
NN design is based on a large sample of I/O pairs of data. If you neither have, nor can generate, representative I/O pairs I...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
Problems with outputs in Neural Networks (in Matlab NN toolbox)
You are experiencing the result of overtraining an overfit network. Training, Validation and Test subsets should, each, be la...

plus de 12 ans il y a | 2

| A accepté

Réponse apportée
2-Class Problem with patternnet
Class 1 target should be [1;0] and class 2 should be [0;1] N1 = 13840, N1trn = 9421, N1val = 2044, N1tst = 2015 N2 = 789...

plus de 12 ans il y a | 1

| A accepté

Réponse apportée
Creating A Layer Recurrent Neural Net with more than 1 Hidden State.
1. What is the definition of a hidden state?...the output of a hidden layer? 2. Why do you think you need a layrecnet instead...

plus de 12 ans il y a | 1

| A accepté

Réponse apportée
??? Error using ==> network.train at 145 Inputs are incorrectly sized for network. Matrix must have 1000 rows.
Transpose your matrices so that inputs and outputs have the same number of columns.

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
How to Initialize the weights randomly and train for 20 different sets of initial weights?
1. I would first consider a. Feature extraction to reduce the size of the matrices b. Data division and an ensemble of...

plus de 12 ans il y a | 2

| A accepté

Réponse apportée
Neural Network Times Series ahead prediction in Matlab, how to build input and output data
Perhaps you did not understand me: I do not understand what you want. An example using a MATLAB data would clarify the i...

plus de 12 ans il y a | 1

| A accepté

Réponse apportée
How to Initialize the weights randomly and train for 20 different sets of initial weights?
As far as answering the questions in the title: 1. Random weight initialization is a default 2. Search using gre...

plus de 12 ans il y a | 1

Réponse apportée
a question on neural network
The only direct references are my posts in NEWSGROUP and ANSWERS. Search on those variable names to obtain further details. A...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
Neural Network Times Series ahead prediction in Matlab, how to build input and output data
This is a poor data set for a realistic time-series example. Find a more appropriate example and code using help nndatasets...

plus de 12 ans il y a | 1

Réponse apportée
Can anyone help me with a Matlab program to cluster using self organizing maps???
First search on "SOM" >> lookfor som Second, use the commands help and doc to understand functions that a. Deal with c...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
error ??? Index exceeds matrix dimensions.
Did it ever occur to you that it is self defeating to include code with a data set that is not accessible to those who want to h...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
How to implement neural network in matlab using newff command
>> help newff newff Create a feed-forward backpropagation network. Obsoleted in R2010b NNET 7.0. Last used in R2010a...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
Matlab code for Supervised SOM neural network
A net cannot be self-organizing if it is supervised. You should be looking for Learning Vector Quantization Nets >> lookfor l...

plus de 12 ans il y a | 1

| A accepté

Réponse apportée
a problem with neural network training
There are MANY thing wrong with your code. 1. Your premise of using a full data design to initialize divided data designs doe...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
The demos of neural network toolbox on back propagation(BP).
1. a. help fitnet % regression and curve-fitting b. help patternnet % classification and pattern recognition 2. Re...

plus de 12 ans il y a | 1

| A accepté

Réponse apportée
Output value in a Neuraql Network
output = net(input); *Thank you for formally accepting my answer* Greg

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
How can I use a trained neural network as an objective function in GA optimisation
Use the trained network to calculate the MSE on non-training data. Normalized MSE NMSE = MSE/mean(var(target',1)) and "Fract...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
How can i save/extract values of plotinerrcorr into a workspace sheet?
You could modify the source code. However, it is easier to just compute the values directly using a corrected version of nncorr....

plus de 12 ans il y a | 0

| A accepté

Charger plus