Beantwortet
Getting best fitting model when using trainlm
Early stopping ONLY depends on the 15% validation subset performance. NOT on the 70% training or 15% testing performance. Inc...

fast 8 Jahre vor | 0

| akzeptiert

Beantwortet
How to solve the multiple regression problem with the help of neural networks in Matlab?
I interpret multiple regression to mean a linear regression involving multiple inputs and outputs. This can be solved by matrix ...

fast 8 Jahre vor | 0

Beantwortet
How to create a target matrix for neural network?
The classic classifier target matrix for c classes contain columns of the unit matrix eye(c). The corresponding output layer ...

fast 8 Jahre vor | 0

Beantwortet
How to continue training my neural network
In order to successfully continue training with new data, 1. Either a. The new data has similar summary statistics as...

fast 8 Jahre vor | 0

Beantwortet
How to change SNR value of noise signal?
Multiply the noise samples by a constant before adding to the signal. *Thank you for formally accepting my answer* Greg

fast 8 Jahre vor | 0

Beantwortet
How can we recover the network state at iteration T
In the distant past I'm pretty sure that I have checked, by using the error plot, that it is done automatically. *Thank you f...

fast 8 Jahre vor | 0

Beantwortet
Avoiding Overfitting by Averaging Multiple Neural Network
The best way to mitigate overtraining an overfit net is MINIMIZE THE NUMBER OF HIDDEN NODES SUBJECT TO A MAXIMUM ALLOWED ERRO...

fast 8 Jahre vor | 1

Beantwortet
How to train a time series dataset ?
Consider current as a function of time. The rest should be straightforward using FITNET. HOWEVER, YOU HAVE USED THE TERM T...

fast 8 Jahre vor | 0

Beantwortet
i have set of data consist of 6 input variables and one output,how can i find formula between inputs and output?
A single hidden layer neural net solution can always be obtained in the form y = B2 + LW * tanh( B1 + IW * x ) However ...

fast 8 Jahre vor | 0

Beantwortet
Performance of Feed Forward Neural Network
% 1. ALWAYS START CLEAN close all, clear all, clc % 2. ALWAYS INITIALIZE THE RNG SO THAT RESULTS CAN BE DUPLICATED !!! ...

fast 8 Jahre vor | 0

Frage


MORE HELPFUL THAN CODE IN HELP/DOC/TYPE NEWFF?
% So many users are using NEWFF that I felt the following % would be useful (especially since it is also relevant % for...

fast 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


WHY HASN'T THE PERSISTENT ERROR IN HELP/DOC/TYPE NEWFF BEEN CORRECTED???
Although NEWFF is obsolete, it is still being used by many. Therefore, why hasn't the following coding ERROR in the docume...

fast 8 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
During NN training how can restrict certain ouputs from going negative?
1. It really doesn't matter what values occur during training as long as the final values are correct. 2. Scale the outputs t...

fast 8 Jahre vor | 0

Beantwortet
Using saved neural network on different size input
The previous answer is not correct. The topic of removing inputs that are correlated with other inputs is not trivial. Unf...

fast 8 Jahre vor | 2

| akzeptiert

Beantwortet
help me ? How many layers?
1. ONE HIDDEN LAYER IS ALWAYS SUFFICIENT! 2. NEWFF is obsolete, Do you have FITNET? help fitnet doc fitnet 2. If yo...

fast 8 Jahre vor | 0

Beantwortet
How alignment of data is treated by the neural network algorithms for one day ahead prediction
I don't understand your problem. What fraction of the target variance did you want to achieve? mse(error)/mean(var(targe...

fast 8 Jahre vor | 0

Beantwortet
Problem in data entry in neural network nntool
Do not use a NN for simple multiplication. If you are looking for an introductory problem see the examples at help fitnet...

fast 8 Jahre vor | 0

Beantwortet
Patternnet for multi-dimensional classification
The training target should have nonnegative entries that sum to 1 and can be interpreted as prior probabilities. 0 and 1 are...

fast 8 Jahre vor | 0

| akzeptiert

Beantwortet
i have problem with ffnn on matlab
close all, clear, clc % N No. of input and output-target vectors % I Input dimension % O Output dimension %...

fast 8 Jahre vor | 0

Beantwortet
Neural network coder decoder
I think I understand your problem. I have used the following technique 1. target = input 2. Single hidden layer 3. Use FIT...

fast 8 Jahre vor | 0

Beantwortet
NARX/time series network for classification
Do not use Narx. Determine how many points are necessary for a prediction. Then form input vectors using that dimensionality...

fast 8 Jahre vor | 0

Beantwortet
Computing Cross Entropy and the derivative of Softmax
Search both comp.soft-sys.matlab and ANSWERS for greg crossentropy Hope this helps. *Thank you for f...

fast 8 Jahre vor | 0

Beantwortet
Neural Network non mutually exclusive cross entropy loss function
The target matrix columns should contain the NON-NEGATIVE UNIT SUM APRIORI CLASS PROBABILITIES !!! See any text r...

fast 8 Jahre vor | 0

| akzeptiert

Beantwortet
What threshold is plotconfusion applying?
% The example in the "help PLOTCONFUSION" dcumentation doesn't help because there are no errors with the simpleclass_dataset! Th...

fast 8 Jahre vor | 1

| akzeptiert

Beantwortet
[Neural network] How does neural network calculate output from net.IW, net.LW, net.b ?
You did not consider net.input.processFcns and net.output.processFcns Search in ANSWERS and comp.soft-sys.m...

fast 8 Jahre vor | 0

Beantwortet
How to determine input delay in a Neural Network (NARX) ?
I have thoroughly discussed this in many COMP.SOFT-SYS.MATLAB and ANSWERS posts. Search in both using greg significant delay...

fast 8 Jahre vor | 0

Beantwortet
In regression, do i need uniform distribution of output?
>> I understand why i need normalization but i don't understand unform distribution of output(=response) works weel without need...

fast 8 Jahre vor | 0

| akzeptiert

Beantwortet
is this NN using Backpropagation ??
1. NEWFF is an OBSOLETE function. Check the HELP and DOC documentation help newff doc newff For example: >> he...

fast 8 Jahre vor | 0

Mehr laden