Réponse apportée
How to set patternnet to get the posterior probabilty sum to unity?
help nndataset % Choose classification/pattern-recognition data with 2 classes close all, clear all, clc for k=1:4 if ...

presque 12 ans il y a | 0

| A accepté

Réponse apportée
Neural Network Input Scaling
The best way to optimize training is to 1. Make sure outliers are removed or modified (I standardize using zscore for this, ...

presque 12 ans il y a | 1

| A accepté

Réponse apportée
Matlab Neural Network Sim function configuration
If size(L1) = [ 129 153 ] and similarly for L2, L3 and L4: input = [ L1(:)' ; L2(:)' ; L3(:)' ; L4(:)' ]; output = net(i...

presque 12 ans il y a | 2

Réponse apportée
Matlab Neural Network Sim function configuration
You have to convert the A3D(129x153x4) into A2D(4x(129*153)) Currently, I do not know how to do this. I tried using the func...

presque 12 ans il y a | 2

| A accepté

Réponse apportée
Forecasting using neural networks
You should have mentioned timeseries and/or narxnet in your question. Try searching the NEWSGROUP and ANSWERS using greg nar...

presque 12 ans il y a | 0

| A accepté

Réponse apportée
Neural Net - Baseline classification above chance?
Changing Notation: If there are c classes with size Ni (i=1:c), N = sum(i=1,c){Ni}, then the a priori probabilities are Pi = Ni/...

presque 12 ans il y a | 2

| A accepté

Réponse apportée
Neural network weight and bias initializaiton problem
net = patternnet(10); net.inputs{1}.processFcns = {}; net.outputs{2}.processFcns = {}; net ...

presque 12 ans il y a | 1

| A accepté

Réponse apportée
Neural Network neuron values
close all, clear all, clc [x,t] = crab_dataset; [ I N ] = size(x) % [ 6 200 ] [O N] = size(t) % [ 2 200 ] xt ...

presque 12 ans il y a | 0

Réponse apportée
Scaled Conjugate Gradient - NN toolbox
Your description is incorrect and confusing. [I N ] = size(input) % = ? [ O N ] = size(target) % = ? Ntrn = ? ...

presque 12 ans il y a | 0

| A accepté

Réponse apportée
Creating neural network using the toolbox
You have to go to the documentation section on custom networks.

presque 12 ans il y a | 0

| A accepté

Réponse apportée
Understanding of the function 'dist'
To try to understand any function, first use the commands help, doc and type help dist doc dist type dist Then ex...

presque 12 ans il y a | 0

| A accepté

Réponse apportée
Noisy results from Neural Network
Try preprocessing with a lowpass filter. The cheapest one I can think of is x(i) = mean([x0(i-1),x0(i),x0(i+1)]) % 3-poi...

presque 12 ans il y a | 2

| A accepté

Réponse apportée
Crossvalidation of liinear models?
help crossval, doc crossval help cvpartition, doc cvpartition Hope this helps *Thank you for formally accepting my answ...

presque 12 ans il y a | 1

| A accepté

Réponse apportée
Merit of feeding Neural Networks data on the certainty of input/output relationship
In general (revise as you please and correct the coding errors) 0. Standardize data with zscore and discard or modify outlie...

presque 12 ans il y a | 2

Réponse apportée
Merit of feeding Neural Networks data on the certainty of input/output relationship
I have had tremendous success with this simple approach: Add varying amounts of random noise to the original inputs but keep ...

presque 12 ans il y a | 2

| A accepté

Réponse apportée
Future Load Prediction with Neural Network Time Series Prediction
load data: What does that mean? load of what? day type: what does that mean? hot/warm/cold? windy/rainy/snowy? ; If you h...

presque 12 ans il y a | 0

| A accepté

Réponse apportée
Neural network with two objective functions
The only way I have ever designed a successful stock market predictor was to use fractional increases in price (or return?) as t...

presque 12 ans il y a | 0

Réponse apportée
How to save neural network in matlab??
To "run" a net means to use a saved net. There is no reason why a saved net will yield different results when it is repeatedly r...

presque 12 ans il y a | 2

| A accepté

Réponse apportée
Get derivatives of neural network?
A good nnet will yield acceptible estimates of the function for which it is trained. Therefore use target = [ f ; g ] wh...

presque 12 ans il y a | 0

| A accepté

Réponse apportée
NEURAL NETWORK Generalization Problems: 95% Good Prediction, 5% Bad Prediction
I don't understand the need for daily creations. Just create a net for each database and store it. Overfitting is easily h...

presque 12 ans il y a | 0

| A accepté

Réponse apportée
MATLAB neural networks interpretation
view(net) is the only command I am familiar with.

presque 12 ans il y a | 0

Réponse apportée
Neural network inputs; multiple vs. single neural networks
There are several basic types of neural nets on which to concentrate. All are well described in the MATLAB documentation: 1. ...

presque 12 ans il y a | 0

| A accepté

Réponse apportée
Neural Network neuron values
1. THE BASIC PROBLEM IS THE DOCUMENTATION Neither help patternnet nor doc patternnet indicate that >> outputlayertransfer...

presque 12 ans il y a | 0

Réponse apportée
Neural Network neuron values
0. [ I N ] = size(input) (I=6), [ O N ] = size(output) (O = 2), 1) Use mapminmax to obtain 6xN dimensional normalized (-...

presque 12 ans il y a | 0

| A accepté

Réponse apportée
How to save neural network in matlab??
save(net) % retrieve using load(net) Hope this helps *Thank you for formally accepting my answer* Greg

presque 12 ans il y a | 2

Réponse apportée
Improving NARX network results
One hidden layer is sufficient net = narxnet(ID,FD,H) For details, search using greg narxnet and greg narx ...

presque 12 ans il y a | 1

| A accepté

Réponse apportée
Create neural networks for ph neutraliztion model.
If this is a classifier use patternnet. help patternnet, doc patternnet If this is for regression, use fitnet. help...

environ 12 ans il y a | 0

| A accepté

Réponse apportée
please how can build the following neural networks by matlab......I need solve
1. help narnet; doc narnet; %Also search in the NEWSGROUP and ANSWERS 2. help narxnet; doc narxnet; %Also search in the NE...

environ 12 ans il y a | 0

| A accepté

Réponse apportée
newbie: How to use neural pattern recognition to create a base signal and recognizing signal.(having very little matlab experience)
1. Use PCA to reduce the dimensionality 2. Use k-means with k=6 to separate the data into 6 classes. 3. There are many ways...

environ 12 ans il y a | 0

| A accepté

Réponse apportée
newbie: How to use neural pattern recognition to create a base signal and recognizing signal.(having very little matlab experience)
33 examples span, at most, a 32-dimensional subspace. Therefore you should try to reduce the dimensionality of the examples. ...

environ 12 ans il y a | 1

Charger plus