Answered
Confusion matrix outputs NaN values after classification using Neural Network
Isn't it obvious? 1. Rows 9 and 10 contain nothing but zeros. 2. Ratios and percentages obtained by dividing by zero w...

9 years ago | 0

Answered
How to disable popup of training windows for neural network in matlab
close all, clear all, clc [x,t] = simplefit_dataset; net = fitnet; net.trainParam.showWindow = 0; % <== This does it [n...

9 years ago | 9

Answered
How to develop a neural network transfer function?
Use FITNET with vectors obtained from vectorizing layers. Hope this helps *Thank you for formally accepting my answer* ...

9 years ago | 0

| accepted

Answered
How to synthetic generate features to balance dataset?
If you have multiple classes with different numbers of examples, the means and covariances of the classes can be used to generat...

9 years ago | 0

Answered
how to get the best the number of hidden neurons and layers for a NARXNET?
There are zillions of my posts in both the NEWSGROUP and ANSWERS that use the criterion Ntrneq >= Nw %( number of...

9 years ago | 0

Answered
Train recurrent neural network with variable length input cell vectors.
Neural networks require "I"nput column vectors with a fixed length (I). Therefore you will have to complete the columns with zer...

9 years ago | 0

| accepted

Answered
How can I manually perform an elmannet neural network calculation?
My guess is z(t) = B1 + IW * [ x(t); z(t-1); z(t-2)]; y(t) = B2 + LW * z(t); Hope this helps *Thank you for formally...

9 years ago | 0

| accepted

Answered
Where can I find the coefficients for my neural net input elements?
Typically, the output y is given by y = B2 + LW*tanh( B1 + IW*x) where B1 input "B"ias net.b{1} IW ...

9 years ago | 0

| accepted

Answered
How can train a neural network, using Genetic Algorithm, I need a example in code. thank
Search NEWSGROUP and ANSWERS with greg genetic Hope this helps. *Thank you for formally accepting my answer* Greg

9 years ago | 0

| accepted

Answered
Is possible solve the problem used ANN toolbox? (related future input)
"I"nputs are I-dimensional column vectors and "O"utput targets are O-dimensional column vectors. Then [ I N ] = size(inputmat...

9 years ago | 0

| accepted

Answered
neural network input error
You cannot change the dimension of the inputs from 50 to 100; Hope this helps *Thank you for formally accepting my answer*...

9 years ago | 0

| accepted

Answered
Neural Net Fitting - how to set a result goal?
I'm sure this has been discussed in both NEWSGROUP & ANSWERS at least a zillion times Try searching with greg msegoal ...

9 years ago | 0

Answered
How to train ANN if my input data is in the form of signals (EMTP-ATP)?
There are two separate regions with stationary summary statistics. This can be modeled with two nets. Why does the secon...

9 years ago | 0

Answered
Importance of various inputs of neural network
I don't think the analytic expression y = B2 + LW * tanh( B1 + IW * x ) will help very much Ranking a large number of ...

9 years ago | 0

Answered
How to get the transfer function equation for the implemented neural network
You have to obtain xsettings and tsettings from x and t. Then apply them to x2 and t2. Hope this helps. *Thank you for ...

9 years ago | 0

| accepted

Answered
How do I get the correct output from a fitnet artificial neural network?
1. Very often you have to use several choices of the random initial weights in order to get a good answer. 2. You forgot to t...

9 years ago | 1

| accepted

Answered
In neural network toolbox for the function: trainautencoder, how can I use purelin for encodertranferfunction?
Using purelin in a hidden layer is a waste of time. You can get the same result by removing the layer and adjusting the outpu...

9 years ago | 0

| accepted

Answered
In Neural Network Toolbox, how can I can change the values of training Parameters ?
1. Another way to do it is net = patternnet(hiddenlayersize); . . . net.trainFcn = 'traingdx'; [ net tr y e ] = train(n...

9 years ago | 0

Answered
Coding ANN learning parameters (e.g number of hidden neurons, learning methods, learning rate, momentum, number of epoch) in Genetic Algorithm chromosome?
Search both NEWSGROUP and ANSWERS using greg genetic Hope this helps *Thank you for formally accepting my answer* ...

9 years ago | 0

| accepted

Answered
How to change learning rate and momentum rate values in GUI application to train ANN
Use the default values and worry about 1. Number of hidden nodes 2. Initial random weights For examples search in both ...

9 years ago | 0

Answered
in backpropagation learning algorithm always i used to get the same accuracy rate whatever learning rate and momentum constant is used.So, what is the solution for this
I have the same experience. What I do is use the best of multiple designs that differ by number of hidden nodes and initial r...

9 years ago | 0

Answered
the learning rate inportance
I have designed zillions of NNs with MATLAB and do not remember ever having to use a nondefault value of lr. Typically, the o...

9 years ago | 0

Answered
How do I create a neural network that will give multiple outputs?
x = randn(18,141); t = randn(18,141); net = feedforwardnet([ 36 36 ]); net = train(net,x,t); view(net) *Thank ...

9 years ago | 1

| accepted

Answered
How to define the prediction horizon in neural network time series tool?
Using the standard approach outlined in doc narxet help narxnet you will get outputs every timestep after the 10th. ...

9 years ago | 0

Answered
Suggest to network architecture for two class classification problem by using MLP neural network
Most of your questions can be answered from 1. The doc and help documentation examples help patternnet doc patternnet ...

9 years ago | 0

Answered
NARXNET closed-loop vs open-loop
% NARXNET closed-loop vs open-loop % Asked by Yevgeniy Arabadzhi % 8:38 PM Thursday, November 3, 2016 % % I have thr...

9 years ago | 4

| accepted

Answered
NARXNET closed-loop vs open-loop
Quick answer: Openloop: Target and input signals are combined to form a vector input for designing the net by estimating ...

9 years ago | 0

Answered
What neural network should I use?
help fitnet doc fitnet Hope this helps. *Thank you for formally accepting my answer* Greg

9 years ago | 1

Answered
question regarding ntstool, pollution mortality example dataset
[X,T] = pollution_dataset; net = narxnet(1:2,1:2,10); [ Ic N ] = size(X) %[ 1 508] [ Oc N ] = size(T))%[ 1 508] x = cell2ma...

9 years ago | 0

| accepted

Answered
correlation function lag selection
1. ID=0 is permissible; FD =0 is noncausal (equivalent to saying the output at time t is caused by the output at time t). 2....

9 years ago | 0

| accepted

Load more