Respondida
Beginning a new neural network from previously trained weight
Sounds like a waste of time. 1. See the help and doc examples 2. Search for posted examples in NEWSGROUP and ANSWERS ...

más de 12 años hace | 1

| aceptada

Respondida
How to put a saved neural network to work on a new set of data?
ynew = net(xnew);

más de 12 años hace | 1

| aceptada

Respondida
How to display figure of neural network structure ?
I only know view(net)

más de 12 años hace | 1

| aceptada

Respondida
Which neural network is suitable for my problem
> Its a time series problem but the output is only dependent on the previous time step. This implies y(t) = f(x(t-1),y(t-...

más de 12 años hace | 1

| aceptada

Respondida
Neural network update via new inputs
1. Obtain the current weights. 2. Define a new net with an extra input and output node 3. Assign the current weights to th...

más de 12 años hace | 2

| aceptada

Respondida
Neural Network classification problem
You cannot rank inputs well with your technique because inputs are correlated. 1. Standardize all data to have zero mean and...

más de 12 años hace | 1

| aceptada

Respondida
NAR Neural network predict Y(t+1) value
If you are limited to no more than n feedback delays, only use the 1 <= d <= n (not necessarily consecutive) delays that corresp...

más de 12 años hace | 1

| aceptada

Respondida
what is use of delays in time series problems
Go to help nndatasets doc nndatasets and choose one of the narxnet eamples. I will compare your results with mine. ...

más de 12 años hace | 1

| aceptada

Respondida
To create a prediction model for road traffic time series data(i.e vehicle count)using artificial neural network in matlab
You will have to include day of the week (1-7) as an input. help narxnet

más de 12 años hace | 2

| aceptada

Respondida
how to Create Custom Transfer Function for Neural Network in MATLAB
http://www.mathworks.com/matlabcentral/answers/64319-neural-network-how-to-use-a-custom-performance-function Hope this helps....

más de 12 años hace | 2

| aceptada

Respondida
how to perform image compression
Searching ANSWERS using image compression neural only yields 11 hits. However, searching in the NEWSGROUP yields 33 hits...

más de 12 años hace | 1

| aceptada

Respondida
Use multidimensional (n>2) array as input for train
1. Convert the data to format long 2. Use PCA feature extraction to reduce IROW = 1440 to irow << IROW 3. Columnize using...

más de 12 años hace | 1

| aceptada

Respondida
Which neural network is suitable for my problem
NARNET is the appropriate function. help narnet doc narnet Choose the row vector of positive feedback delays, FD, from...

más de 12 años hace | 1

Respondida
How do I improve the performance in training neural network ?
Try this. Details can be discussed later [ I N ] = size(B) % = ? { O N ] = size(E1) % = ? MSE00 = mean(var(E1'),1) ...

más de 12 años hace | 0

| aceptada

Respondida
How can I set targets in nueral network pattern recognition?
If your {0,1} answer only depends on whether one or more of three inputs is out of range, then there is no need for a NN. On the...

más de 12 años hace | 1

| aceptada

Respondida
Neural net default error: "Default value is not a member of type "nntype.distance_fcn"."
1. Review a. doc selforgmap b. help selforgmap 2.What happens when you cut and paste the help example with each of ...

más de 12 años hace | 1

| aceptada

Respondida
NAR network vs NARX network? Error weights in preparets?
Narx can also include present values of the input. If the cross=correlations between input and output are significant, Narx s...

más de 12 años hace | 1

| aceptada

Respondida
Neural net default error: "Default value is not a member of type "nntype.distance_fcn"."
If you can't figure it out, try the command line approach and keep my comment in mind. Hope this helps. *Thank you for for...

más de 12 años hace | 1

Respondida
How to decide sampling frequency (is there any rule) for analysing the 3 phase voltage and current signals so as to use them as input to neural network for fault location
I can adequately represent one period of a sinusoidal wave with 8 equi-spaced points. So, choose the highest frequency you want ...

más de 12 años hace | 1

| aceptada

Respondida
Abnormal outputs in Neural Networks Blind tests (new tests after the net is trained).
Most of your code is useless. It is equivalent to Input(1,:) = xlsread('Training data.xlsx','B2:B165241'); Input(2,:) = xl...

más de 12 años hace | 2

| aceptada

Respondida
Bayesian Network trainbr: Effective number of parameters
If you use 22 parameters and trainbr says the number of effective parameters is six 1. I don't think that means you can disc...

más de 12 años hace | 0

| aceptada

Respondida
about trainbr and tranlm
Backpropagation is an optimization technique used in many types of algorithms. trainlm and trainbr are just two of many algor...

más de 12 años hace | 1

| aceptada

Respondida
Can we change the name of an input neuron in neural netwrok?
The quick answer is: YES To understand how, consider the following: Terminology correction: The typical FFMLP has ...

más de 12 años hace | 1

| aceptada

Respondida
trainbr and data division
An ovefit network that is overtrained memorizes the training data and can perform very poorly on nontraining data. Instead of us...

más de 12 años hace | 2

| aceptada

Respondida
Create Neural Network with multiple output
You have one output but it is 2-dimensional. Use patternnet with size(x) = [ 5 N ] and size(t) = [ 3 N ] where the c...

más de 12 años hace | 0

| aceptada

Respondida
Neural Network Time series - Forecast problems
Always use a single hidden layer since it is a universal approximator. Use one or both of autocorrelation(t)and crosscorrelat...

más de 12 años hace | 0

| aceptada

Respondida
Applications where Radial Basis and Probabilistic Neural Networks are successful respectively?
Use RBFs. Like MLPs, under some conditions, they are universal approximators. I consider PNNs to be a special case of an RBF...

más de 12 años hace | 1

| aceptada

Respondida
Weight decay parameter and Jacobian matrix of a neural network
The documentation for trainbr is pretty bad. help trainbr doc trainbr Look at the source code type trainbr I am...

más de 12 años hace | 0

| aceptada

Respondida
how to code two input and one output neural network???
The same matrix equations as for a single input. The "Mat" in Matlab stands for Matrix. What have you tried? Hope this hel...

más de 12 años hace | 0

| aceptada

Respondida
About parameters for NARX
FD: Find the significant delays in the autocorrelation function of the target ID: Find the significant delays in the cross-co...

más de 12 años hace | 1

| aceptada

Cargar más