Answered
The best Ann configuration
My favorite technique: 1. Accept all default parameters except for the number of hidden nodes, H. 2. Minimize H subject t...

10 years ago | 2

| accepted

Answered
NARX prediction and generalization
I do not see the point: 1. Plots of x and y almost overlap Rsqtrn = 1 - mse(yTrain-xTrain)/var(yTrain,1) = 0.87053 Rsqt...

10 years ago | 0

| accepted

Answered
why NARXNET is better than other methods for multistep ahead prediction
The only other function used for multistep ahead prediction is NARNET which only uses output feedback as an input. Since NARX...

10 years ago | 0

| accepted

Answered
How to get neural net weight matrix
Use the commands lookfor, help, and doc on getwb and setwb Also search the NEWSGROUP and ANSWERS Hope this h...

10 years ago | 1

| accepted

Question


DESIGNING AN ELMAN NET PROJECT
A MATLAB Central Contributor Question Sent On:Feb 02/03/16 11:26 PM Hi Greg, I'm in a senior semester at university and...

10 years ago | 1 answer | 0

1

answer

Answered
how to optimize neural network thyroid example using genetic algorithm?
Are you sure you want the complexity of 2 hidden layers? One is sufficient. How many input/target pairs? N = Input vec...

10 years ago | 0

| accepted

Answered
When creating dataset ,I have a error ' All variables must have same number of rows'. Help me how to resolve this error
For each Input column of dimension I there has to be a corresponding Output target column of dimension O [ I N ] = size(inpu...

10 years ago | 0

| accepted

Answered
data prediction using neural network
help narxnet doc narxnet additional examples to practice with help nndatasets doc nndatasets Search both the NEWS...

10 years ago | 0

| accepted

Answered
Artificial neural network (ANN), trainlm, traingda trainbfg and trainrp
Here is a simple comparison of the 4 training functions on the dataset used in the fitnet and feedforwardnet documentation. ...

10 years ago | 0

| accepted

Answered
How can I train a neural network manually choosing a specific set of initial weights and biases?
After net is trained the state of the rng is changed. Therefore the weight initialization of net2 is different. % help fit...

10 years ago | 1

Answered
Where is the problem in my neural network script? I cannot update the weights and biases after training.
train(net, 0.1, 1) You cannot train with a single point. You need input and target row vectors or matrices.

10 years ago | 0

| accepted

Answered
How can I train a neural network manually choosing a specific set of initial weights and biases?
If you want to reproduce initial weights, reinitialize the rng to the same state before using configure. If any non-zero weig...

10 years ago | 0

| accepted

Answered
i m working with JAFFE dataset.how to divide dataset into training and testing for neural network i m giving LBP feature of JAFFE images as a input.i have a code which divide 70% -30% ratio but how can i know that this 70% is for training,30%testing?
As the above code indicates, the default is 70/15/15 . To change it, just change the percentages in the above assignment stateme...

10 years ago | 0

| accepted

Answered
What is the MATLAB code for Cascade correlation neural networks?
Before you post questions, try the three commands lookfor, help and doc >> lookfor 'cascade correlation' cascade correl...

10 years ago | 0

| accepted

Answered
Why is the testSet (size) equal to the dataSet after installing net.divide​Param.test​Ratio to 15/100.
1. The random 70/15/15 split is a default. Therefore you don't have to specify anything to use it. The separate train/val/tes...

10 years ago | 0

| accepted

Answered
How to select inputs for my neural network
1. Standardize inputs to zero-mean/unit-variance xn = zscore(x); You can rank inputs by replacing, one at a time, input ...

10 years ago | 0

| accepted

Answered
how can i find the best ann architecture?
>why am i not using time series ann tools? because its to complicated, Ridiculous. 1. The help and doc documentation wi...

10 years ago | 0

| accepted

Answered
I am working on ANN toolbox, but i m not getting idea as in what will be the input and what will be the target value???
If you have N input/target pairs for I-dimensional inputs to be classified into one of c-classes characterized by class indices ...

10 years ago | 0

| accepted

Answered
Prediction with Narxnet without future inputs
You are correct. If you do not have future inputs you are in serious trouble. My approach is to design two additional NARNETS:...

10 years ago | 1

| accepted

Answered
how to save and reuse a trained neural network
1.At what point in my code will i put save net Any time after training it and before deleting it. However, give it a uniqu...

10 years ago | 32

| accepted

Answered
Data normalization in neural network
Solve the equation for data! Hope this helps. *Thank you for formally accepting my answer* Greg

10 years ago | 0

| accepted

Answered
Artificial neural network (ANN), trainlm, traingda trainbfg and trainrp
The current NN function to use for regression is FITNET (a special case of FEEDFORWARDNET) it was created to replace ...

10 years ago | 0

| accepted

Answered
What is the use of the target matrix and how do i create one?
The current neural network classification function is PATTERNNET (replacing the obsolete NEWPR). The syntax of the target matrix...

10 years ago | 2

| accepted

Answered
effectiveness of input in neural net
I don't know how to be any clearer than that. So, why don't you submit your code and I can comment

10 years ago | 0

| accepted

Answered
Need help NARX Neural Network forecasting methodology. 1,6,12 hours / step ahead ???
Choose the number of lags from the number of significant lags in the input/target crosscorrelation function and the target autoc...

10 years ago | 0

| accepted

Answered
radial basis neural network
help newrb doc newrb type newrb Separately search the NEWSGROUP and ANSWERS with greg newrb ( 148 NEWSGROUP hits ,...

10 years ago | 0

| accepted

Answered
How can i make a closed loop NarxNet with feedback of predicted values?
"but once predicted, feedback them" That is exactly what narxnet does. The default values ID,FD = (1:2,1:2) yield 1. y(t...

10 years ago | 1

| accepted

Answered
hi, i have trained my network and i have the weights of the networks and save them as excel sheet, now how i can use the these weights in new prediction problem ?
You can load the weights and recreate the net. Then for a new input, newoutput = net(newinput); Hope this helps. *Than...

10 years ago | 0

| accepted

Answered
feed back neural networks
help narxnet doc narxnet Search the NEWSGROUP and ANSWERS with greg narxnet Hope this helps *Thank you for fo...

10 years ago | 0

| accepted

Answered
How can i make a closed loop NarxNet with feedback of predicted values?
If you find a way to feedback signals before they are created, CONTACT ME IMMEDIATELY!!! I'LL MAKE US BOTH VERY, VERY, W...

10 years ago | 0

Load more