Answered
How can I plot only the traning set in plotperform(tr) figure in MATLAB.
>> type plotperform It looks very difficult to modify plotperform. I would just write a few lines of code to produce a sep...

9 years ago | 0

| accepted

Answered
RBF newrbe algorithm uses k-means and inverse matrix?
No. NEWRBE constructs identical symmetric Gaussians around EACH data point. Therefore, to optimize the design, just vary the com...

9 years ago | 0

| accepted

Answered
What is the default supervised learning algorithm in matlab
All of the net properties can be deduced via net = net % No semicolon Hope this helps. Greg

9 years ago | 0

| accepted

Answered
Recurrent neural network with variable sized output
Matrix valued entities are usually represented via brackets [] Cell valued entries are usually represented via braces {} ...

9 years ago | 0

| accepted

Answered
Is there some way to display the output FUNCTION of a neural net (i.e. the actual equation relating the inputs to the neural net output)?
I have several posts regarding this in both the NEWSGROUP and ANSWERS. It should suffice to search in ANSWERS using GREG ...

9 years ago | 0

| accepted

Answered
How to set the target vector for image input in training neural network?
There are two choices 1-dimensional target 0 or 1 2-dimensional target [ 1;0 ] or [ 0;1 ] The 2-D target is preferred ...

9 years ago | 0

| accepted

Answered
How to obtain the relative importance of each input variable for a neural network?
The relative importance of an input variable depends on what other input variables are present. For example, if you are not p...

9 years ago | 1

| accepted

Answered
Update the weights of NARNET model
In order to adapt ANY feedforwardnet (that has been trained on data1) to data2, create data3 data3 = data1 + data2 And ret...

9 years ago | 0

Answered
How to stop training of a neural network at the error stability
It depends on the size of the data set. Therefore I would also monitor the gradients of whatever continuous measures you are t...

9 years ago | 0

| accepted

Answered
how to train a bag of words for pattern recognition problems in neural network
The general assumptions are 1. training and nontraining (i.e., validation, test and unseen data) have the same summary...

9 years ago | 0

Answered
Can a created Neural network only be updated with train()
Training with only data2 after training with only data1 will degrade performance on data 1. Therefore you have several choice...

9 years ago | 0

Answered
Can a created Neural network only be updated with train()
Possibilities (double check my aging memory by creating your own trivial examples) 1. Empty net a. Use INIT. Results ind...

9 years ago | 0

| accepted

Answered
What kind of neural network i should use?
I have already answered this question recently. Please reread it. 1. You need 2 nets trained on the same data. 2. A = net1...

9 years ago | 0

| accepted

Answered
option chains and neural nets
Columnization using the (:) operator does not scramble the data. It rearranges it. The only problem is if the user scrambles ...

9 years ago | 0

| accepted

Answered
Neural networks are giving me a headache!
Percentages of What ??? What are inputs and outputs? Matrix dimensions? minmax values?(Fractions instead of percentage...

9 years ago | 0

Answered
My neural network is getting trained but not yielding correct answers?plz help
Your input and target matrices are transposed Why Hmin=1 instead of 0? Where did you get Hmax = 50?? Search greg fitnet Hu...

9 years ago | 0

| accepted

Answered
very good in training very bad in predictions (neural network)
newff is obsolete. Use fitnet instead. I think you wasted too much time on finding parameters. Typically, you should use de...

9 years ago | 1

| accepted

Answered
Errors from the Neural Network Toolbox code
Individual inputs and targets in the NN Toolbox are COLUMN VECTORS, NOT ROW VECTORS ! [ I N ] = size(input) [ O N ] ...

9 years ago | 0

| accepted

Answered
Evaluation of a network with only 1x4 matrix
If you are using the NN Toolbox you have to TRANSPOSE your matrices [ I N ] = size(input) % [ 4 87 ] [ O N ] = size(ta...

9 years ago | 0

| accepted

Answered
Recurrent Neural Network with multiple time series
Your understanding of the term "multiple trajectories" is not clear to me. However, you cannot update any old net with only ...

9 years ago | 0

| accepted

Answered
NARXNET training with independent data sets
If you first train with dataset A you will get weight and bias vector WA = getwb(netA). If you then train netA with data...

9 years ago | 0

| accepted

Answered
What exactly are the gradient and Mu in ANN?
The gradient is the gradient of the square of the error function error = (knowntarget - variableoutput) with respect to t...

9 years ago | 1

| accepted

Answered
Undefined function or method 'minmax' for input arguments of type 'double'.
minmax is a valid function 1. What version of MATLAB and NNTOOLBOX are you using? ver 2. Post the code where...

9 years ago | 1

| accepted

Answered
Using different learning algorithms for the neural net toolkit
You may be worrying about the wrong thing. With a typical I-H-O FFnet the number of equivalent nets obtained by just changing we...

9 years ago | 0

| accepted

Answered
How to get validation test and training errors of a neural network?
BOTH documentation commands help patternnet and doc patternnet have the following sample code for CLASSIFICATION & PAT...

9 years ago | 0

| accepted

Answered
Can anyone give me a two input two output fit-net example with dataset
Typically, MATLAB equations are multidimensional. For regression, classification and time series, all you have to do is crea...

9 years ago | 0

| accepted

Answered
Recurrent Neural Network with multiple time series
You can only train for one trajectory at a time; A multidimensional input just indicats a vector valued signal on a single tr...

9 years ago | 0

Answered
Help with ntstool future value predictions?
Since you don't mention an input/output scenario, I assume you are using a NARNET on a single feedback series. Search ...

9 years ago | 0

| accepted

Answered
Test New Data on Neural Network
ynew = net(xnew); Hope this helps. *Thank you for formally accepting my answer* Greg

9 years ago | 0

| accepted

Answered
How can I design a custom neural network with a modified output?
Just use a two-dimensional output trained with the target values for y and g. Hope this helps. *Thank you for formally acc...

9 years ago | 0

| accepted

Load more