Respondida
How can i train a multilayer perceptron with complex data?
It can and has been done. Just use neural and complex in any search engine. Although I tried it once or twice, I gave it up ...

alrededor de 13 años hace | 0

| aceptada

Respondida
how to calculate the error in Neural Network Back Propagation Network
Use as many defaults as possible MSEgoal = 0.01*mean(var(target',1)) MinGrad = MSEgoal/100 net = newff(input,target); ...

alrededor de 13 años hace | 1

| aceptada

Respondida
Neural Network Input Data
[3 100 ] = size(input) [12 100 ] = size(output) help fitnet doc fitnet Hope this helps. *Thank you for formally...

alrededor de 13 años hace | 0

| aceptada

Respondida
Matlab Neural Net: Classifying Numerically Related Classes.
There is no need to take the sequential nature of the output into account. Just use 5-dimensional unit vectors with a single ...

alrededor de 13 años hace | 0

| aceptada

Respondida
How to determine input and target data for classification in neural network
%size(input) = [ 7 125 ] %size(target) = [ 5 125 ] target = zeros(5,125); target(1,1:25) = ones(1,25); ... ta...

alrededor de 13 años hace | 0

| aceptada

Respondida
Help with future data prediction
Just choose the correct values for the input and feedback delays ID = [ 0 1 ] FD = 1 *Thank you for formally accepting ...

alrededor de 13 años hace | 0

| aceptada

Respondida
Neural Network: Blast Furnace Simulation -How do I how many neurons/layers i should use to optimize my network?
INCORRECT: The target vector does not have the same size. Standardize input and target matrices (ZSCORE or MAPSTD) [I N ] ...

alrededor de 13 años hace | 0

| aceptada

Respondida
Neural Netwok testing issues
Bottom lime: You don't have enough data to adequately characterize a space of dimension 10,304. 50 data points can span, A...

alrededor de 13 años hace | 1

| aceptada

Respondida
Neural Netwok testing issues
What...no validation set? How did you avoid memorization by overtraining an overfit net? [I N ] = size(input_data) = [10304 5...

alrededor de 13 años hace | 0

Respondida
Neural Network tool nftool
Not enough information. 1. Your spelling of outputs is inconsistent 2. [ I N ] = size(inputs) =? 3 [ O N ] = siz...

alrededor de 13 años hace | 0

| aceptada

Respondida
Neural network for pattern recognition
This is a standard time-series prediction problem. help timedelaynet Hope this helps. *Thank you for formally accepting...

alrededor de 13 años hace | 0

| aceptada

Respondida
Self Organizing Map training question
This is a well known NN training phenomenon simply referred to as forgetting. See comp.ai.neural-nets posts and FAQ. The only...

alrededor de 13 años hace | 0

| aceptada

Respondida
How can create a neural network by hand using trained neural network data in Matlab
x = 1:1:50; % Semicolon y = x * 3 ; % Semicolon net = newff(x,y,5) % NO semicolon inputprocessfunctions = net....

alrededor de 13 años hace | 0

| aceptada

Respondida
Neural Netwok testing issues
Are you using patternnet? If not, what? What is the size of your input matrix, target matrix and number of hidden nodes? W...

alrededor de 13 años hace | 0

Respondida
neural network analysis and modelling
1. Obtain the weights IW,b1,LW and b2 from the net. 2. Normalize x and t to get xn and tn yn = repmat(b2,1,N)+ LW*tansig(r...

alrededor de 13 años hace | 0

| aceptada

Respondida
Neural Network Expression Extraction
Type net % Without a semicolon See the defaults that you have not taken into account (e.g., mapminmax) *Thank you fo...

alrededor de 13 años hace | 0

| aceptada

Respondida
How do I add a column to a matrix with specific values?
The question is ill posed. The matrix has 4 columns and the question is how to add a third column. The accepted answer is ...

alrededor de 13 años hace | 0

Respondida
Narnet: How does the prediction work?
for I=1:500 % or any other large number you like 1. Calculate the autocorrelation function of randn(1,N) where N is the ...

alrededor de 13 años hace | 0

| aceptada

Respondida
what is the purpose of the last line?
init initializes a net with random weights. However, the command is totally unnecessary because newff is self-initializing. ...

alrededor de 13 años hace | 0

| aceptada

Respondida
KDD data set normalization
Read the documentation on premnmx. Not only is it obsolete, it has a bug. Use mapminmax instead help premnmx doc premnmx...

alrededor de 13 años hace | 0

Respondida
Using pattern neural network's weights in my own forward propagation code
ALWAYS use TANSIG for hidden layers and normalize inputs so that the means are approximately zero. Let the levels be controll...

alrededor de 13 años hace | 0

| aceptada

Respondida
How to create a custom neural network?
Although view.net shows the 3-input/4-layer network I wanted, I do not know how to tell train that there are 3 separate 1-dime...

alrededor de 13 años hace | 0

| aceptada

Respondida
please i want to know the definition of each of the variables in the statement i.e y,t e.t.c.I am using R2009. But when i type the statement is complaining . in Daily_Result = performance(y,t,'all', 'v') % calculate statstics.
PERFORMANCE is not a function in any of my Toolboxes. Check the documentation in MATHWORKS.com. The documentation for the...

alrededor de 13 años hace | 0

| aceptada

Respondida
changing number of neurons
close all, clear all, clc tic [ x, t ] = simplefit_dataset; MSE00 = mean(var(t',1)) % Constant output reference Hmin...

alrededor de 13 años hace | 1

| aceptada

Respondida
How to create a custom neural network?
The diagram shows 3 neurons in the hidden layer and 1 neuron in the output layer. All transfer functions are 'purelin'. You ...

alrededor de 13 años hace | 0

Respondida
Discrete time Neural Network programming in MATLAB
There are no hits on Chebyshev neural networks in the NEWSGROUP, ANSWERS or COMP.AI.NEURAL-ETS. Try more general searches usi...

alrededor de 13 años hace | 0

| aceptada

Respondida
KDD data set normalization
1. I do not see where you have confirmed that you have obtained acceptable results from training. Where do you compare training ...

alrededor de 13 años hace | 0

| aceptada

Respondida
Expression of ANN Model
The standard MLP for regression and curve-fitting is FITNET. The standard MLP for classification and pattern-recognition is PAT...

alrededor de 13 años hace | 0

Respondida
why exp(a*t) is not equal to ilaplace ((s*i-a)^-1) in matlab
In addition to the surprising fact that you did not post your exact code, your expression for exp(A*t) is incorrect.

alrededor de 13 años hace | 0

Respondida
nnstart and test ROC AUC
clear all, close all, clc, plt=0; tic [ x, t ] = simpleclass_dataset; [ I N ] = size(x) % [ 2 1000 ] [ O N ] = s...

alrededor de 13 años hace | 1

| aceptada

Cargar más