Beantwortet
Neural network code gives wrong output.!
1. What version of MATLAB do you have? 2. Why are you using the extremely obsolete function NEWFF? 3. Do you have t...

mehr als 9 Jahre vor | 0

| akzeptiert

Beantwortet
NARNET - Qualitative Data & Time Prediction
Is this 1 type of event that occurs in all of the countries? Separate the series for each country. Obtain the auto and cro...

mehr als 9 Jahre vor | 0

| akzeptiert

Beantwortet
Narxnet with Many timesteps to one time step
1. Plot subsampled series so that you can see what range of subsampling rates makes sense. 2. Plot the autocorrelation functi...

mehr als 9 Jahre vor | 1

| akzeptiert

Beantwortet
Can Neural Network Toolbox's time series model use data that are observed with different time-lags?
1. There is no problem if you can interpolate the series at equidistant points. 2. Correlated inputs are not a problem unless...

mehr als 9 Jahre vor | 0

Beantwortet
How can I Use my Datas in Genetic Algorithm Tool?
I cannot help with the ga tool. However, I have several posts regarding NN design using ga. Search both NEWSGROUP and ANS...

mehr als 9 Jahre vor | 0

| akzeptiert

Beantwortet
Which's the better classifier to use for skin issues identification using matlab
I don't know which would be best for you. However, NNs are universal approximators and I would be surprised if any of the others...

mehr als 9 Jahre vor | 0

| akzeptiert

Beantwortet
Analytic input output equation of NARNET
No, it is a feedback network whos only input signals are delayed previous outputs. There is no external applied input. x(...

mehr als 9 Jahre vor | 1

| akzeptiert

Beantwortet
getting very high MSE and an R almost equal to 1!!
Your R looks pretty good. Therefore your MSE is relatively low compared to the average target variance because R = sqrt( 1 -...

mehr als 9 Jahre vor | 1

| akzeptiert

Beantwortet
How to create a target data set based on input data set in a neural network?
If the input data set is x(n), ( n = 1:N ) the output data set could be y(n) = f( x(n), x(n-1), ... x(n-m) ), for n > m...

mehr als 9 Jahre vor | 0

| akzeptiert

Beantwortet
Obtaining neural network formula
What are b, IW and LW? Given those values and the fact that x and t are both scaled to [-1 1 ] before training and y is resca...

mehr als 9 Jahre vor | 0

Beantwortet
Is there any way to have the size of Outputs the same as the Inputs and different form Target datasize in neural network?
No. Since the net is designed to create outputs that are as close to the targets as possible, What you are suggesting does...

mehr als 9 Jahre vor | 0

| akzeptiert

Beantwortet
How to choose the most significant variables from possible 57 variables for neural network input?
Backward stepwise (NOT stagewise) search has worked well for me in the task of classifying stars using stellar spectra( Backward...

mehr als 9 Jahre vor | 0

| akzeptiert

Beantwortet
Multiple-inputn Recurrent- Elman Neural Network
It doesn't make any sense to use a timeseries net for classification. Use patternnet: help patternnet doc patternnet ...

mehr als 9 Jahre vor | 0

Beantwortet
What happend if the validation performance was greater than the test performance?
There is no rule governing the order of the val and tst performances. That is why it is worthwhile to design a number of nets di...

mehr als 9 Jahre vor | 1

| akzeptiert

Beantwortet
How to transfer neural network weights to my own code
MATLAB's default normalization range is [ -1 1 ]. Hope this helps. *Thank you for formally accepting my answer* Greg ...

mehr als 9 Jahre vor | 0

Frage


HOW TO UPDATE NEWREADER FILES ?
When I open the NEWSREADER, the most recent file is 8 Feb 2017 Building Rapid-Accelerator Target w/ debug info Patrick Doe...

mehr als 9 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
feedforwardne not enough input arguments error
Your code does not look familiar. Why not just try the code in the help and doc documentation of FITNET (regression/curvefitting...

mehr als 9 Jahre vor | 0

Beantwortet
why we give training and testing samples in same data set on neural network?
Training, validation and testing are performed automatically. See the help and doc documentation examples for FITNET (regression...

mehr als 9 Jahre vor | 0

Beantwortet
how to train and testing data leaf diseases identification using classify pattern recoginitaion neural network?
For classification see the documentation for PATTERNNET: help patternnet and doc patternnet For examples search the NE...

mehr als 9 Jahre vor | 0

Beantwortet
How to use non-integer(decimal) values as target values in neural network?
For N pairs of I-dimensional "I"nputs and corresponding O-dimensional "O"utput targets, size(input) = [ I N ] size(targe...

mehr als 9 Jahre vor | 0

| akzeptiert

Beantwortet
What is the default transfer function for fitnet?
tansig (AKA tanh) *Thank you for formally accepting my answer* Greg

mehr als 9 Jahre vor | 1

Beantwortet
how to implement the classification using feed forward neural network
1. See the classification documentation help patternnet and doc patternnet 2. Search the NEWSREADER using patt...

mehr als 9 Jahre vor | 0

| akzeptiert

Beantwortet
incorrect or unexpected brackets
I don't think a. Square brackets are allowed on the RHS b. Round brackets are allowed on the LHS Hope this helps. ...

mehr als 9 Jahre vor | 1

Beantwortet
Predicting time-series Y (t+1) with Neural Networks
You have no proof that the Open Loop (OL) training is successful. Often it is not because of insufficient values for 1. in...

mehr als 9 Jahre vor | 0

| akzeptiert

Beantwortet
How to predict y-values with another set of given x-values in matlab 2013a neural networks time series tool, after i have trained my model?
y = net(x,xi,ai)); *Thamk you for formally accepting my answer* Greg

mehr als 9 Jahre vor | 1

| akzeptiert

Beantwortet
what is x,t and y variables in this code?
x is the input matrix with N I-dimensional input columns t is the output target matrix with N O-dimensional output target col...

mehr als 9 Jahre vor | 3

Beantwortet
How is the performance function evaluated for a closed loop NARX network ?. Is the same training set used in every epoch of the training ?
Search both NEWREADER ad ANSWERS using greg narx greg narxnet Hope this helps. *Thank you for formally accepting thi...

mehr als 9 Jahre vor | 0

Beantwortet
How to know the weight in Artificial neural network with hidden node of 15?
1. Read the online documentation a. Regression or curvefitting help fitnet and doc fitnet b. Classification or ...

mehr als 9 Jahre vor | 0

| akzeptiert

Beantwortet
How to choose Neural Network Training values
Always start with as many defaults as possible. Typically, you only have to MINIMIZE THE NUMBER OF HIDDEN NODES with 10 trials o...

mehr als 9 Jahre vor | 0

| akzeptiert

Beantwortet
How can I edit the number of hidden layer nodes?
Nghia: net1 = network(1,2,[1;0],[1; 0],[0 0; 1 0],[0 1]) ; view(net1) % 1. The topology of Nghia's net1 has 1 hidden la...

mehr als 9 Jahre vor | 1

Mehr laden