Answered
NARX OPTIMUM HIDDEN NODES NUMBER
I get the same results as you. 1. However, there are some code inconsistencies including: • a. Using Ntrn = 70 with 'divi...

10 years ago | 0

| accepted

Answered
Neural-Network-Performance Paradox (WITH PICTURES!)
Rnew looks good but MSEnew looks about 60 times too large. Something is wrong. MSEnew has the symptoms of overtraining an ov...

10 years ago | 1

Answered
Applying z-score before scaling to [0,1]?
It is well known (e.g., see the comp.ai.neural-nets FAQ) that the most efficient MLP nets are those which have * 1. Bipolar...

10 years ago | 0

| accepted

Answered
I want to forecast for next period
2005 to 2010 is 5 years, not 3. [ I N ] = size(input)% = ? [ O N ] = size(target)% = ? Try divideblock with a (4/6)/(1/...

10 years ago | 0

Answered
how do exactly the testing and validation sequences work in neural network toolbox in Matlab?
> I have few questions concerning Neural networks especially the Neural Network Toolbox and i'd really appreciate it if you c...

10 years ago | 1

| accepted

Answered
I want to forecast for next period
Since you obviously wrote NAX in error, it is not clear whether you meant NAR or NARX. Assuming NAR, 1. Start with the docu...

10 years ago | 0

Answered
Inconsistent test-results with neural network
The only time that should happen is when the 2 sets do not appear to come from the same probability distribution. You don't g...

10 years ago | 0

Answered
How can I get access to network's weights in 'adapt' function after each presentation of an input
I am assuming that your use of the term "dynamic" does not denote using time series (e.g., NARXNET); Use a loop of one epoch ...

10 years ago | 0

Answered
how can divide the sample into two part (training and test) in Narnet
close all, clear all, clc, tic % help narnet T = simplenar_dataset; sizeT = size(T) % [ 1 100 ] t ...

10 years ago | 0

| accepted

Answered
I am performing neural network analysis on some data. I need to perform K-fold Cross Validation for preventing overfitting. I do not know how to go about it. Please can you help me out!
http://www.mathworks.com/matlabcentral/newsreader/view_thread/326830#898048 http://www.mathworks.com/matlabcentral/newsrea...

10 years ago | 0

| accepted

Answered
How to interpret the performance graph in NN Toolbox ?
The data division indices are stored in the structure tr ... [ net tr y e ] = train(net, x, t ); Data is automatically ...

10 years ago | 0

| accepted

Answered
how to find Regression Equation from artificial neural network or fuzzy tool box
Assume the input, x and target, t variables are normalized to xn and tn. Then the normalized output for the default regression n...

10 years ago | 0

| accepted

Answered
can I used neural network to solve equations and get the unknows
It looks like you would have to set all of learning rates for net.b and net.IW{ i, j ~= I ) to zero.

10 years ago | 0

Answered
Monotonic Constrained NEURAL NETWORK
If the derivative of the target with respect to the input is positive, just design a good net with as few hidden nodes as possib...

10 years ago | 0

Answered
after knowing the optimum weights, how to fix these input weight and bias as constant for remaining training?
If you haven't finished training how can you possibly know that any weights are optimal? I don't know of a good reason for "...

10 years ago | 0

Answered
I need to design an appropriate Neural Network for my Data
% result = 0 0.70784 % 3 0.91287 % 6 0.93873 % 9 0.94475 % ...

10 years ago | 1

| accepted

Answered
Temperature Prediction Neural Network Toolbox - Typical Wind Turbine Component Temperature Across a 50 Turbine Wind Farm
I would first assume that the combined time-series of all variables for one turbine is enough to predict it's bearing temperatur...

10 years ago | 0

| accepted

Answered
I need to design an appropriate Neural Network for my Data
My code that you included works ok. But I did have several comments 1. PLOT ALL 19 COMPONENT PLOTS 2. Plot results 3. CO...

10 years ago | 0

Answered
Neural Network simulation for the output value is different from the output value obtained by using calculations, why?
Insufficent information 1. What do the 3 target values represent? 2. Your analytic calculations make no sense a. ...

10 years ago | 0

| accepted

Answered
coefficient of determination in neural network model
Search NEWGROUP and ANSWERS greg fitnet R2 Hopet his helps *Thank you for formally accepting my answer* Greg

10 years ago | 0

Answered
Performance of test data Neural Network
k = 3 X=x'; Y=y'; GEH1: 3 X syntax ERROR GEH2: Preferred Notation a. Use T & t for target; Y & y for output b...

10 years ago | 0

| accepted

Answered
A question about Neural Plant Model in Neural Predictive Controller demo.
Good point. That is one of my gripes. In particular, for TIMEDELAYNET and NARXNET, the default input delays should include ...

10 years ago | 0

| accepted

Answered
using a trained ANN
% FITNET REUSE EXAMPLE: % Train in workspace % Save copy to directory % Clear original from workspace % Load copy from...

10 years ago | 1

| accepted

Answered
how can use static feedforward neural network to predict futre observation
If you want to use the static net FITNET to predict d timesteps ahead of a single N timestep timeseries, use defaults and double...

10 years ago | 0

Answered
MATLAB gives me different value of output every time I train a neural network, why?
The default data division and weight initialization are both random. To reproduce a design you have to know the initial state...

10 years ago | 0

| accepted

Answered
Feedforward net lagged prediction
Didn't I answer this in the NEWSGROUP???

10 years ago | 0

| accepted

Answered
Cross validation in recurrent neural network
Contrary to some of the data division information stored in the LAYRECNET timeseries neto = layrecnet; neto = neto (...

10 years ago | 0

| accepted

Answered
How do I cross-validate in recurrent neural networks?
http://www.mathworks.com/matlabcentral/answers/225901-cross-validation-in-recurrent-neural-network

10 years ago | 0

| accepted

Answered
Cross validation in recurrent neural network
Validation checks are a default and should work as long as you are not trying to use TRAINBR. (TRAINBR validation is version dep...

10 years ago | 0

Answered
how can use static feedforward neural network to predict futre observation
Use one of these help nndatasets (Also see : doc nndatasets) Single time-series prediction involves predicting the next v...

10 years ago | 0

Load more