回答済み
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...

11年弱 前 | 0

| 採用済み

回答済み
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...

11年弱 前 | 1

回答済み
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...

11年弱 前 | 0

| 採用済み

回答済み
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/...

11年弱 前 | 0

回答済み
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...

11年弱 前 | 1

| 採用済み

回答済み
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...

11年弱 前 | 0

回答済み
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...

11年弱 前 | 0

回答済み
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 ...

11年弱 前 | 0

回答済み
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 ...

11年弱 前 | 0

| 採用済み

回答済み
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...

11年弱 前 | 0

| 採用済み

回答済み
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 ...

11年弱 前 | 0

| 採用済み

回答済み
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...

11年弱 前 | 0

| 採用済み

回答済み
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.

11年弱 前 | 0

回答済み
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...

約11年 前 | 0

回答済み
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 "...

約11年 前 | 0

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

約11年 前 | 1

| 採用済み

回答済み
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...

約11年 前 | 0

| 採用済み

回答済み
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...

約11年 前 | 0

回答済み
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. ...

約11年 前 | 0

| 採用済み

回答済み
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

約11年 前 | 0

回答済み
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...

約11年 前 | 0

| 採用済み

回答済み
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 ...

約11年 前 | 0

| 採用済み

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

約11年 前 | 1

| 採用済み

回答済み
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...

約11年 前 | 0

回答済み
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...

約11年 前 | 0

| 採用済み

回答済み
Feedforward net lagged prediction
Didn't I answer this in the NEWSGROUP???

約11年 前 | 0

| 採用済み

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

約11年 前 | 0

| 採用済み

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

約11年 前 | 0

| 採用済み

回答済み
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...

約11年 前 | 0

回答済み
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...

約11年 前 | 0

さらに読み込む