Respondida
Neural Net: Saving Trained Net
If you do not use NARXNET you will have to add additional dimensions to the input matrix to accomodate the target delays. After ...

casi 14 años hace | 1

Respondida
patternnet for classification to 5bit targets?
Yes you can use 5 bit binary coding. However, the training will be quite a bit(no pun intended) more difficult. There is no m...

casi 14 años hace | 0

Respondida
Neural Network Output Problem
You should always run at least 10 trials for each candidate net. For example, if I am considering H = 0:2:20 hidden nodes, I tab...

casi 14 años hace | 0

| aceptada

Respondida
Test data Neural Network
I assume target T is 1-dimensional. What is the size of the X matrix? Are X(i,:) and T stationary (e.g., are the ten 63 po...

casi 14 años hace | 1

| aceptada

Respondida
univariate time series prediction with neural network
TIMEDELAYNET predicts future outputs from present and past inputs only NARNET predicts future outputs from past outputs only ...

casi 14 años hace | 0

| aceptada

Respondida
Input format to the neural network
[ I N ] = size(input)= [ 20 50 ] [ O N ] = size(target)= [ 10 50 ] If you use PATTERNNET with it's default batch learning ...

casi 14 años hace | 0

| aceptada

Respondida
Why it is diferent the result?
The answers will be the same, PROVIDED you take into account that the network automatically transforms the data to [-1,1] duri...

casi 14 años hace | 1

Respondida
How to initialize target matrix of a Neural-Network ?
I assume you are using patternnet. Your N I-dimensional input vectors should be columns (not rows) of an IxN input matrix. ...

casi 14 años hace | 0

| aceptada

Respondida
How to implement validation check using trainbr function in MATLAB 2010b?
Probably all of them. However, I recommend TRAINLM for regression/curvefitting with TRAINRP as a huge dataset alternative. ...

casi 14 años hace | 1

| aceptada

Respondida
how to initialize the neural network to a set of weights ???
Unlike the older nets (e.g., newfit, newpr, newff,...), you cannot assign weights to the newer networks (e.g., fitnet, patternne...

casi 14 años hace | 1

| aceptada

Respondida
How to compute the derivative of the neural network?
Differentiate to obtain dyi/dxn y = b2 + LW*h h = tanh(b1+IW*x) or, with tensor notation(i.e., summation over repeated ...

casi 14 años hace | 2

| aceptada

Respondida
how to initialize the neural network to a set of weights ???
net = patternet; will default to H = 10 hidden nodes. For other values use net = patternnet(H); If size(input) = ...

casi 14 años hace | 4

Respondida
How to use Principal Component Analysis to reduce feature space?
The ratio of 99.1 to sum(latent) indicates the proportion of the total variance contained in the first principal component. De...

casi 14 años hace | 0

| aceptada

Respondida
How to store R-value and MSE value in workspace while using Neural Network
If you use the syntax [ net tr ] = train(net, x, t); Most of the important training info is in the structure tr. Type, wit...

casi 14 años hace | 2

| aceptada

Respondida
Jacobian creation technique in Neural Network (NN)
I cannot access the current source code. >> help nntraining.perfs_jejj Copyright 2010 The MathWorks, Inc. TODO - if...

casi 14 años hace | 0

| aceptada

Respondida
Why trainbr function in Matlab 2010b doesn't present any information about validation check in nntraintool window?
Validation Stopping and Regularization are alternative methods for mitigating the overtraining of an overfit network. (Others ar...

casi 14 años hace | 0

| aceptada

Respondida
Neural Network Tool Box
% Neural Network Tool Box % Asked by Bashar Ali on 12 Oct 2012 at 18:14 % Latest activity Edited by Image Analyst on 12 ...

casi 14 años hace | 0

| aceptada

Respondida
Index exceeds matrix dimensions?
> clear >format compact >load testinria3; >xn=x'; >yn=y; >noin=face; What are x, y, and face ?? What are th...

casi 14 años hace | 0

Respondida
calculation of total parameters in neural network
1.Read the documentation. NEWRB doesn't work like any of the other nets. help newrb doc newrb a. Notice that the goal i...

casi 14 años hace | 1

| aceptada

Respondida
How to incorperate graph as nerual network input?
The net reads matrix input only. For a MLP with I-H-O node topology the input and target formats are [ I N ] = size(input) ...

casi 14 años hace | 0

| aceptada

Respondida
declare net of neural network in matlab
% declare net of neural network in matlab % Asked by Tulips on 10 Oct 2012 at 10:49 % hi, I'd assigned this variable in...

casi 14 años hace | 0

| aceptada

Respondida
how to display or input the character '
>> z = ' '' ' z = '

casi 14 años hace | 1

Respondida
while using som how to cluster the data into three clusters?
Kohonen's SOM algorithm is for UNSUPERVISED clustering. For supervised clustering he recommends his LVQ and LVQ2 algorithms N...

casi 14 años hace | 1

Respondida
Neural Network for predictions. How to improve it
Neural Network for predictions. How to improve it Asked by Edo on 5 Oct 2012 at 8:18 Latest activity Answered by Edo abou...

casi 14 años hace | 0

Respondida
How do you write a function that will sort a one-dimensional array using looping and conditionals without using the sort or sortrow commands?
Find minx = min(x) at index indmin x(indmax) = []; y1 = [ y1 minx ]; Hope this helps enough so that you will formally a...

casi 14 años hace | 0

Respondida
How can I plot the plotperf() with training validation and testing data set on command line
It depends on what version you are using. help plotperf and doc plotperf yield Obsoleted in R2008b NNET 6.0. Last used in...

casi 14 años hace | 0

| aceptada

Respondida
how to set the dimensions for a SOM map?
1. Plot the projection of the data on the dominant PCA plane to get a "good feel" for the data: a. lookfor 'principal compo...

casi 14 años hace | 0

Respondida
Weights in Neural networks
The most common NN is the single hidden layer MLP (MultiLayer Perceptron). The I-H-O node topology is consistent with "I"nput ...

casi 14 años hace | 1

Respondida
How can I use LDA (Linear or Fisher Discrimnant Analysis) with an hardwritten digits dataset (like MNIST or USPS)?
It may help to forget LDA for a while and directly create a linear classifier using the slash operator. For example, since your ...

casi 14 años hace | 0

Respondida
How can I use LDA (Linear or Fisher Discrimnant Analysis) with an hardwritten digits dataset (like MNIST or USPS)?
You use the term HARDwritten. Do you mean HANDwritten? There are only 10 digits 0:9. Therefore, there are only 10 classes. ...

casi 14 años hace | 0

Cargar más