Respondida
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...

alrededor de 8 años hace | 0

| aceptada

Respondida
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 ...

alrededor de 8 años hace | 0

Respondida
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 ...

alrededor de 8 años hace | 0

Respondida
Getting while using NARXnet. I have Qsimulated and Qobserved data. I can find error (Qobserved-Qsimulated). I am new to narnet. I have to predict future 5 values of forcasting. Data is in cell format and not in Times series. Please help.
You don't understand net = narxnet(1:2,1:2,10) ??? 1. READ THE DOCUMENTATION AND REPRODUCE THE EXAMPLES IN BOTH doc nar...

alrededor de 8 años hace | 0

Respondida
Getting while using NARXnet. I have Qsimulated and Qobserved data. I can find error (Qobserved-Qsimulated). I am new to narnet. I have to predict future 5 values of forcasting. Data is in cell format and not in Times series. Please help.
Use the command whos to make sure all variables have the correct dimensions I have examples in BOTH comp.soft-sys.mat...

alrededor de 8 años hace | 0

Respondida
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...

alrededor de 8 años hace | 0

Respondida
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

alrededor de 8 años hace | 0

Respondida
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...

alrededor de 8 años hace | 0

Respondida
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...

alrededor de 8 años hace | 1

Respondida
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...

alrededor de 8 años hace | 0

Respondida
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 ...

alrededor de 8 años hace | 0

Respondida
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 !!! ...

alrededor de 8 años hace | 0

Pregunta


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...

alrededor de 8 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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...

alrededor de 8 años hace | 1 respuesta | 0

1

respuesta

Respondida
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...

alrededor de 8 años hace | 0

Respondida
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...

alrededor de 8 años hace | 2

| aceptada

Respondida
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...

alrededor de 8 años hace | 0

Respondida
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...

alrededor de 8 años hace | 0

Respondida
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...

alrededor de 8 años hace | 0

Respondida
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...

alrededor de 8 años hace | 0

| aceptada

Respondida
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 %...

alrededor de 8 años hace | 0

Respondida
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...

alrededor de 8 años hace | 0

Respondida
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...

alrededor de 8 años hace | 0

Respondida
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...

alrededor de 8 años hace | 0

Respondida
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...

alrededor de 8 años hace | 0

| aceptada

Respondida
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...

alrededor de 8 años hace | 1

| aceptada

Respondida
[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...

alrededor de 8 años hace | 0

Respondida
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...

alrededor de 8 años hace | 0

Respondida
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...

alrededor de 8 años hace | 0

| aceptada

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

alrededor de 8 años hace | 0

Cargar más