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

fast 12 Jahre vor | 0

| akzeptiert

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

fast 12 Jahre vor | 1

| akzeptiert

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

fast 12 Jahre vor | 2

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

fast 12 Jahre vor | 2

| akzeptiert

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

fast 12 Jahre vor | 0

| akzeptiert

Beantwortet
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/...

fast 12 Jahre vor | 2

| akzeptiert

Beantwortet
Neural network weight and bias initializaiton problem
net = patternnet(10); net.inputs{1}.processFcns = {}; net.outputs{2}.processFcns = {}; net ...

fast 12 Jahre vor | 1

| akzeptiert

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

fast 12 Jahre vor | 0

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

fast 12 Jahre vor | 0

| akzeptiert

Beantwortet
Creating neural network using the toolbox
You have to go to the documentation section on custom networks.

fast 12 Jahre vor | 0

| akzeptiert

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

fast 12 Jahre vor | 0

| akzeptiert

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

fast 12 Jahre vor | 2

| akzeptiert

Beantwortet
Crossvalidation of liinear models?
help crossval, doc crossval help cvpartition, doc cvpartition Hope this helps *Thank you for formally accepting my answ...

fast 12 Jahre vor | 1

| akzeptiert

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

fast 12 Jahre vor | 2

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

fast 12 Jahre vor | 2

| akzeptiert

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

fast 12 Jahre vor | 0

| akzeptiert

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

fast 12 Jahre vor | 0

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

fast 12 Jahre vor | 2

| akzeptiert

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

fast 12 Jahre vor | 0

| akzeptiert

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

fast 12 Jahre vor | 0

| akzeptiert

Beantwortet
MATLAB neural networks interpretation
view(net) is the only command I am familiar with.

fast 12 Jahre vor | 0

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

fast 12 Jahre vor | 0

| akzeptiert

Beantwortet
Neural Network neuron values
1. THE BASIC PROBLEM IS THE DOCUMENTATION Neither help patternnet nor doc patternnet indicate that >> outputlayertransfer...

fast 12 Jahre vor | 0

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

fast 12 Jahre vor | 0

| akzeptiert

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

fast 12 Jahre vor | 2

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

fast 12 Jahre vor | 1

| akzeptiert

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

etwa 12 Jahre vor | 0

| akzeptiert

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

etwa 12 Jahre vor | 0

| akzeptiert

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

etwa 12 Jahre vor | 0

| akzeptiert

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

etwa 12 Jahre vor | 1

Mehr laden