Answered
How can I use an algorithm for traning a NARX network and optimize another model in the same time ?
Just because I've never heard of it in my 3-decade experience with NNs doesn't mean it can't be done. For regression and clas...

12 years ago | 1

| accepted

Answered
How can I correctly classify inputs for a neuronal network?
1. Unlike the MLP classifier (patternnet), the RBF classifier (newrb) is automatically trained, without trn/val/tst data divisio...

12 years ago | 1

| accepted

Answered
THE DIFFERACE RESULT IN NEURAL NETWORK PROBLEM
if you are using a saved net that has been previously trained, this should not happen. If you are setting the RNG to the same...

12 years ago | 1

| accepted

Answered
What is the difference between classifiication and matching in neural networks?
You haven't explained what type of classifier you have designed. In particular, what is the command sim(T,testimage) supposed to...

12 years ago | 0

| accepted

Answered
Neural network with limited datasets
[ I N ] = size(inputs) % [ 15 42 ] [ O N ] = size(targets) % [ 1 42 ] Ntrn = N -2*round(0.15*N) % 30 default...

12 years ago | 2

| accepted

Answered
BACK PROPAGATION WITH 2 HIDDEN LAYERS
My recommendation is to FIRST use one hidden layer and try to minimize the number of hidden nodes while achieving an adjusted R-...

12 years ago | 1

| accepted

Answered
Price Forecasting Using Neural Networks
For N examples of the I factors and corresponding prices [I N ] = size(input) [1 N ] = size(target) help fitnet d...

12 years ago | 1

| accepted

Answered
Neural Network tool box
Default trn/val/tst data division and initial weights are random. To duplicate runs you have to initialize the RNG to the same i...

12 years ago | 1

| accepted

Answered
How to scale the output of test data to its original value in neural network??
I think you are asking how to renormalize outputs when targets are scaled. If you use the defaults, they are automatically r...

12 years ago | 1

| accepted

Answered
Having a problem training & Testing the Neural network
train takes 3 inputs, not 2. help train doc train Hope this helps. *Thank you for formally accepting my answer* ...

12 years ago | 1

| accepted

Answered
What is the difference between classifiication and matching in neural networks?
I don't understand how you can be training a net when you don't know what the output should be. If you have c categories, num...

12 years ago | 0

Answered
Does using ANN as the fitness function minimizes all the outputs of ANN ?
Again, Outputs are not fitness functions. Fitness functions are nonnegative functions of the matrix output matrix, y, and ta...

12 years ago | 1

| accepted

Answered
Using of NARX in the case a time series step is not constant and inconsistent from one sample to another.
[ 4 600 ] = size(input) [ 1 600 ] = size(target) help fitnet doc fitnet

12 years ago | 1

Answered
Do Train and Test have to be in the same file - Neural Network Matlab Toolbox
No. it is not the correct way. The inputs to confusion and plotconfusion must have the same dimensions because they should b...

12 years ago | 1

Answered
Does using ANN as the fitness function minimizes all the outputs of ANN ?
No. The network is designed to minimize the statistical estimate of a fitness function like mean-squared-error. There are no...

12 years ago | 2

Answered
did i need target matrix for new input testing??
If you have a new input you can use the net to obtain an output and the corresponding classification. However, without the corr...

12 years ago | 1

| accepted

Answered
Question about neural network weights/biases initialization
net = configure(net,inputs,targets); help configure doc configure Hope this helps. Greg

12 years ago | 1

| accepted

Answered
Do Train and Test have to be in the same file - Neural Network Matlab Toolbox
The training algorithm does not estimate weights using validation or test data. data = design + test; design = train + v...

12 years ago | 2

| accepted

Answered
How to set manually training and test data for training a neural network
It is probably easier to use 'divideblock' Hope this helps. Greg

12 years ago | 2

Answered
Using of NARX in the case a time series step is not constant and inconsistent from one sample to another.
Terminology: You have 1 sample of 200 examples. Do you mean you have 3 constanr inputs (a,b,c) ? If so, ignore them and yo...

12 years ago | 1

| accepted

Answered
newff
There are many examples in ANSWERS and the NEWSGROUP. The pattern-recognition/classification function newpr calls newff. However...

12 years ago | 1

| accepted

Answered
Need help on Neural Network Multiple Classes Training
Insufficient definition of the 11-dimensional input space. Even if you trained with 2 vectors per dimension. You probably wo...

12 years ago | 1

| accepted

Answered
How to use ANN for fault classification
help paternnet doc patternnet help nndata Search ANSWERS and the NEWSGROUP using the keyword patternnet ...

12 years ago | 2

| accepted

Answered
How do I arrange and input my data for a time series problem?
This is a fitting problem. help fitnet doc fitnet Search fitnet greg fitnet {;>) Hope this helps

12 years ago | 1

| accepted

Answered
NN Training Data
The optimal ratio for training, validation and testing depends on the data. The MATLAB default is 70/15/15 The default spl...

12 years ago | 1

| accepted

Answered
how can I access the outputs of the hidden layers in a neural network?
Take the I-H-O net and create an I-H net with no hidden layer. See the section in the documentation on custom nets. ADDITI...

12 years ago | 1

| accepted

Answered
Neural Mapminmax option for a set
If the total data set is assumed to be a random sample from the population and the trn/val/tst subsets are random samples from...

12 years ago | 0

| accepted

Answered
Input-Output Fitting problem with a Neural Network - Stock predication
My previous answer is for regression and curve-fitting. Unfortunately, I concentrated more on your given code than your writ...

12 years ago | 1

Answered
Input-Output Fitting problem with a Neural Network - Stock predication
close all, clear all, clc, plt = 0 % NOTE: SOME SEMICOLONS REMOVED FOR DISPLAY PURPOSES % Read Useful Info % help nn...

12 years ago | 1

| accepted

Answered
Some questions about House Pricing problem
1. Standardize all inputs and outputs to zero-mean/unit-variance 2. Remove or modify input and output outliers so that (help ...

12 years ago | 2

| accepted

Load more