Réponse apportée
How is the output layer characterized in the neural network toolbox?
Your code looks ok. However, since the figure shows 3 inputs, I question your quoted sizes. Insert the following statements ...

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
how can i get the matlab code for MLPN NEURAL NETWORK
1. command line help fitnet doc fitnet 2. NEWSGROUP and/or ANSWERS search greg fitnet 3. For source code: ty...

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
fitnet regression plot shows no relation between output and target values
The regression plot will only show output 1 vs input 1. Obviously, there are 95 other plots for the other I/O combinations, s...

plus de 11 ans il y a | 1

| A accepté

Réponse apportée
why the number of epoches is low
The default structure is an I-H-O = 12-10-1 tansig/purelin fitnet. Standardize input and target with zscore. Try that configurat...

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
How to store the randomly generated initial weights while using fitnet function of ANN toolbox?
Cut and paste into the command line: [x,t] = simplefit_dataset; net = fitnet(10); % Inputs and Outputs are NOT ...

plus de 11 ans il y a | 1

| A accepté

Réponse apportée
How to sign multiple input and multiple output?
size(input) = [ 3 26 ] size(target) = eye(36) Hope this helps. *Thank you for formally accepting my answer* Greg

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
How close loop works in NAR neural network?
You have to know the target in order to test and, if needed, to continue training netc. Just closing the loop is, in general...

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
How to specify some weight of ANN?
Set the learning rates of the output layer to zero.

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
Neural Network Validation Index
You may be using trainbr.

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
Neural network simulation
Add random noise to the test data to get performance vs snr. Better yet, systematically add noise to all the data to get a nu...

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
create a network with multiple inputs using NNTOOL
Combine the two files to create a multidimensional input matrix. Greg

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
Neural Network Step Targets
A well trained net learns a deterministic input/output relationship. Training, validation and test data should all be representa...

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
how many datasets are used to training neural network in one iteration?
1 dataset 100 examples Each epoch the batch training default, trainlm, uses 70 training examples to update weights, outp...

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
neural network problem in newff
close all ; clc; clf; clear all; % Load the Closing stock index Data load wedinput.dat; load wedtarget.dat; % Input an...

plus de 11 ans il y a | 1

| A accepté

Réponse apportée
Neural Network retrieve test dataset to plot
From either [ net tr y e ] = train( net, x, t ); % or % [ net tr ] = train( net, x, t ); % y = net(x); % e = t - y...

plus de 11 ans il y a | 1

| A accepté

Réponse apportée
i get an error when creating newff please help me ..
It looks like you are using an obsolete version of NEWFF where the first input is minmax(input_n) instead of input_n. However...

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
How to set up weights/bias of the NARX neural network
You are concentrating on the wrong stuff. The most important things are (assuming a SINGLE hidden layer) 1. Obtain a good se...

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
Making dataset for signature recognition?
I assume you have a technique for extracting features out of the images. If not, you'll have to search the net, including comp.a...

plus de 11 ans il y a | 1

Réponse apportée
How to test a neural network with an unknown input data set?
ynew = net(xnew) Hope this helps. Greg

plus de 11 ans il y a | 1

| A accepté

Réponse apportée
I want to classify the mammogram using BNN (Bayesian Neural Network) classifier....Any steps of bnn classifier..
help trainbr doc trainbr

plus de 11 ans il y a | 1

| A accepté

Réponse apportée
I have to classify the mammograms using bnn (Bayesian neural network) classifier..please help me..
Extract features and use trainbr help trainbr doc trainbr Hope this helps *Thank you for formally accepting my answe...

plus de 11 ans il y a | 1

| A accepté

Réponse apportée
Can anybody knows ,ist here any difference between naviey bayes classifier and bayesian neural network classifier??
help NaïveBayes doc NaiveBayes help fitNaïveBayes doc fitNaiveBayes Assumes probability distributions for each cl...

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
which is the best neural network for classification problem?
It depends. However, in general, the default should be the standard classification version of the universal approximator. The...

plus de 11 ans il y a | 1

| A accepté

Réponse apportée
How to decide inputs and targets for neural networks for a signature recognition and verification system?
For N=360 examples of I-dimensional extracted feature column vectors and corresponding N-dimensional row vector of class indices...

plus de 11 ans il y a | 1

| A accepté

Réponse apportée
how to display individual output regression in multiple output neural network
1. Please reformat your code so that it can be run by cutting and pasting into the command line without further adjustments. ...

plus de 11 ans il y a | 1

| A accepté

Réponse apportée
layer in neural network
Two of the most important uses for Neural Networks are regression(function approximation, curvefitting) and classification/patte...

plus de 11 ans il y a | 1

| A accepté

Réponse apportée
How can i make a training of square pulse to neural network ? how
% when i am training a square wave to a neural network , network reply response below % </matlabcentral/answers/uploaded_file...

plus de 11 ans il y a | 1

| A accepté

Réponse apportée
Below is the probabilistic neural network for classification, but it is not working fine. Can someone help to improve it? especially how to recalculate training, validation and test performance.
NEWPNN is created, not trained. help newpnn doc newpnn Try NEWRB, it trains itself. help newrb doc newrb Sear...

plus de 11 ans il y a | 1

| A accepté

Réponse apportée
welcom i need perceptron neural network in matlab using in pattern recognation
help patternnet doc patternnet For ther patternnet examples search the NEWSGROUP (and ANSWERS) greg patternnet Hope...

plus de 11 ans il y a | 1

| A accepté

Réponse apportée
how to decrease the neural network error
close all, clear all, clc [ I N ] = size(input) % [ 6 90 ] [O N ] = size(target)% [ 3 90 ] MSE00 = mean(var(target',1)...

plus de 11 ans il y a | 1

| A accepté

Charger plus