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

9 years ago | 0

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

9 years ago | 0

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

9 years ago | 0

| accepted

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

9 years ago | 0

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

9 years ago | 1

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

9 years ago | 0

| accepted

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

9 years ago | 0

| accepted

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

9 years ago | 0

| accepted

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

9 years ago | 0

| accepted

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

9 years ago | 0

| accepted

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

9 years ago | 0

| accepted

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

9 years ago | 0

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

9 years ago | 0

| accepted

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

9 years ago | 0

| accepted

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

9 years ago | 0

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

9 years ago | 0

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

9 years ago | 0

| accepted

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

9 years ago | 0

| accepted

Answered
How can I process data in neural network?
Use 0 and 1. *Thank you for formally accepting my answer* Greg

9 years ago | 0

| accepted

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

9 years ago | 0

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

9 years ago | 0

| accepted

Answered
Dividing the data into training,testing,validation
>> lookfor divide ... divideblock - Partition indices into three sets using blocks of indices. divid...

9 years ago | 0

| accepted

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

9 years ago | 1

| accepted

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

9 years ago | 1

| accepted

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

9 years ago | 0

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

10 years ago | 0

| accepted

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

10 years ago | 0

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

10 years ago | 0

| accepted

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

10 years ago | 0

| accepted

Load more