Réponse apportée
Neural Networks Online Learning
Use FITNET with ADAPT instead of TRAIN. The commands HELP and DOC with FITNET and ADAPT will yield examples. Hope this hel...

presque 10 ans il y a | 0

Réponse apportée
neural network training in a loop
1.The number of epochs to a satisfactory result depends on the random initial weights and random datadivision. Therefore, ...

presque 10 ans il y a | 0

Réponse apportée
Hey I need to know how to know how many neurons?
Search the NEWSGROUP and ANSWERS using Ntrneq Nw where I have used the criterion that the number of UNKNOWN weights, Nw, ...

presque 10 ans il y a | 0

| A accepté

Réponse apportée
function of neural network
Use fitnet with a 3-dimensional (x,y,z) input of size [ 3 N ] and a corresponding 1-dimensionalal (f) target of size [ 1 N ]. ...

presque 10 ans il y a | 0

Réponse apportée
Setting up a 3 layered back-propagation neural network
Only hidden and output nodes are considered being in neuron layers because they are associated with non-identity transfer functi...

presque 10 ans il y a | 1

Réponse apportée
How to forecast future values (beyond input series) using time series in neural networks (NARX)
You should only use NARX if 1. The training input and target are significantly correlated in the target region as exemp...

presque 10 ans il y a | 0

| A accepté

Réponse apportée
Using Time series toolbox I have generated a network model and it takes 4 delay input and gives 4 delay output. Confusion is, what 4 delay output values represent. Is they are 4 predicted values, if so then which one is more accurate. Please clear.
Consider the current output to exist at time t and the 4 input delays and 4 output feedback delays to correspond to previous sig...

presque 10 ans il y a | 0

| A accepté

Réponse apportée
bias problem with trainb
Just use the current (i.e., non-obsolete) classifier net = patternnet([]); % [] => No hidden layer for linear model For ...

presque 10 ans il y a | 0

| A accepté

Réponse apportée
retrain neural networks and different forecasts
I have posted zillions of double loop solutions in both the NEWSGROUP & ANSWERS. The outer loop is over number of hidden node...

presque 10 ans il y a | 0

| A accepté

Réponse apportée
NARX Multi step ahead predictions
1. Traditionally, with [ I N ] = size(input) % [ 4 500 ] [ O N ] = size(target) % [ 1 500 ] you would use a subset of ...

presque 10 ans il y a | 0

| A accepté

Réponse apportée
Online Leanring with adapt function
Read the ADAPT documentation to verify that ADAPT is meant to be used for timeseries. help adapt doc adapt In other wor...

presque 10 ans il y a | 0

| A accepté

Réponse apportée
I have a problem in my application "minimisation of power in the battery management system of vehicle HEV', the custom neural network ran only in 6s i don't know how i can change the time of run.Please help me!
1. Initialize the random number generator once before the first design 2. For each of several values (e.g., 10) for number of...

presque 10 ans il y a | 0

Réponse apportée
can I modify the the pattern recognition input data in neural network tool box ?
No. Greg

presque 10 ans il y a | 0

| A accepté

Réponse apportée
How to define inputs and targets for neural network pattern recognition?
Choose a sufficiently large random sample of motion data input columns and the corresponding class index (1-9). The correspondin...

presque 10 ans il y a | 0

| A accepté

Réponse apportée
narx - inputs and targets
You cannot build a successful net without knowing what transformation you want it to perform. In general, inputs are typical ...

presque 10 ans il y a | 0

| A accepté

Réponse apportée
After using Harr Feature Exteraction how Use ANN for Gender Discrimination Programm
1. How many pictures? 2. How many features? 3. Standardize (zero-mean/unit-variance) 4. Delete and/or modify outliers...

presque 10 ans il y a | 0

Réponse apportée
different ANN predictions from manually ones
You are using the colon (:) instead of the comma (,) in your matrix notation. The jth component in the ith row of A is A(...

presque 10 ans il y a | 0

Réponse apportée
How to validate the output given by the Probabilistic Neural Network in MATLAB?
No. What you have done does not validate your model. In fact, what you have done doesn't make sense. In addition to the trivial ...

presque 10 ans il y a | 0

| A accepté

Réponse apportée
why NARNET for multi step ahead prediction is better than other prediction models.
It is not necessarily the best. If you have an input then NARXNET or even TIMEDELAYNET may be better. *Thank you for forma...

presque 10 ans il y a | 0

| A accepté

Réponse apportée
How can I process data in neural network?
Use 0 and 1. *Thank you for formally accepting my answer* Greg

presque 10 ans il y a | 0

| A accepté

Réponse apportée
Neural Network (Dynamic Time Series) - get dependencies from inputparameter to outputvalue
A quick approximate way is to use STEPWISE and/or STEPWISEFIT on a 1. linear model 2. quadratic model Hope this helps...

presque 10 ans il y a | 0

Réponse apportée
What will be the data format for Neural Network tool box?
Regression and Curvefitting http://www.mathworks.com/matlabcentral/newsreader/view_thread/337914#928185 Classification and P...

presque 10 ans il y a | 0

| A accepté

Réponse apportée
Dividing the data into training,testing,validation
>> lookfor divide ... divideblock - Partition indices into three sets using blocks of indices. divid...

presque 10 ans il y a | 0

| A accepté

Réponse apportée
What is validation failure Artificial neural network ?
To prevent the net from performing poorly on nontraining (validation, test and unseen data) while learning well on training data...

presque 10 ans il y a | 1

| A accepté

Réponse apportée
different ANN predictions from manually ones
I did not go through your text in detail. However, it seems that you have not normalized input and target and unnormalized t...

presque 10 ans il y a | 1

| A accepté

Réponse apportée
how to store target into array bpnn?
TARGET VECTORS SHOULD BE COLUMNS OF THE UNIT MATRIX eye(4) classindices = [ 1 2 3 4 3 2 1] target = full(ind2vec(c...

presque 10 ans il y a | 0

Réponse apportée
hello dear, i want to separate training data & testing data in matlab.but how? anyone please help me
Why did you neglect to mention validation data ??? Validation data is important because it prevents the net from losing it's ...

presque 10 ans il y a | 0

| A accepté

Réponse apportée
I have to build a model which will give a predictive analysis of CPU utilisation with respect to the load and response time, using neural networks. Any ideas or codes?
help fitnet doc fitnet Search both Newsgroup and Answers using greg fitnet Hope this helps. *Thank you for forma...

presque 10 ans il y a | 0

Réponse apportée
Is that possible to have the same training-MSEs for the same training data set with different weights at end of the training phase?
If you have H hidden nodes you can reorder them H! ways. If you have an odd parity transfer function you can change the sign ...

presque 10 ans il y a | 0

| A accepté

Réponse apportée
how can i create patternnet using radial basis function
Unfortunately, MATLAB doesn't care that newpnn, newrb, and newrbe have been neglected stepchildren since they were born. I've...

presque 10 ans il y a | 0

| A accepté

Charger plus