답변 있음
Logsig activation function in irradiance post-processing
You have overthought the design. You probably only have to change the random initial weights and/or the number of hidden nodes...

대략 10년 전 | 0

| 수락됨

답변 있음
why the network performance decreased??
Given a value for the number of hidden nodes, using different random weight initializations AND random weight divisions will yie...

대략 10년 전 | 0

| 수락됨

답변 있음
How can i create ensamble neural networks for pattern recognition? (dividing data)
I don't like huge nets when smaller ones can probably get the job done nearly as well. My first effort would be to see which com...

대략 10년 전 | 0

답변 있음
Testing NARX on data without known target
You cannot test a net without knowing the target. Hope this helps. *Thank you for formally accepting my answer* Greg

대략 10년 전 | 0

답변 있음
building customer behavior model using neural network
YOU have to determine what variables are reasonable to use for inputs AND what the target output should be for each input. Th...

대략 10년 전 | 0

답변 있음
activation of different states in neural network
In that case you should use Gaussian hidden nodes help radbas doc radbas so that one or more will recognize only a part...

대략 10년 전 | 0

| 수락됨

답변 있음
how to solve overtrained nn with validation stop?
You cannot over-train unless the net is over-fit. The net is over-fit if there are more unknown parameters than there are tr...

대략 10년 전 | 1

답변 있음
how to represents a function at three variables from data collected on the field?
If the function is not too weird, the regression neural network FITNET should fill the bill. Assuming x,y,z and t are rows of...

대략 10년 전 | 0

답변 있음
classification using neural network
No one knows. Everyone has to do their own search. However, if you use the c-dimensional {0-1} column unit vectors as c-class ta...

대략 10년 전 | 0

답변 있음
How do you format data for a narxnet without preparets?
Using preparets on the narxnet documentation example to deduce the answer: Although I used the default input delay ID = 1:2, ...

대략 10년 전 | 0

답변 있음
How can I get the function y(t) from NARX problem in Neural Network Time Series Tool?
Since your model is not nonlinear, just use NARXNET with no hidden nodes. X = con2seq(giveninput); T = con2seq(giventa...

대략 10년 전 | 0

| 수락됨

답변 있음
activation of different states in neural network
That makes no sense to me. Outputs are not activated randomly. For a given net there is a nonrandom relationship between input a...

대략 10년 전 | 0

답변 있음
reverse engineering a simple neural network
You did not take into account the default normalization of inputs to the range [-1,1] and the unnormalization of the output from...

대략 10년 전 | 0

| 수락됨

답변 있음
using 2D data as input for a neural network
0. An input layer node is not a neuron. Only hidden and output layer nodes are neurons. 1. Use the colon operator matrix(:) t...

대략 10년 전 | 0

| 수락됨

답변 있음
Simple Linear SVM classification with normalization
The "I"nput matrix of size [ I N ] = size(x) consists of N I-dimensioal input vectors that contain ALL (includes the question ve...

대략 10년 전 | 0

답변 있음
How can I get the function y(t) from NARX problem in Neural Network Time Series Tool?
See one of my Narx posts in the NEWSGROUP or ANSWERS: greg narnet Hope this helps. *Thank you for formally accepting m...

대략 10년 전 | 0

답변 있음
Does weights and bias received from ANN are also normalized???
Typically, the NN training algorithms use the MAPMINMAX transformation to obtain input and target variables in [ -1 1 ] and to r...

대략 10년 전 | 1

답변 있음
Which architecture and settings are the bets to predict the next value of a time series by time delay neural network?
If you only have 1 series, use NARNET help NARNET doc NARNET Search BOTH the NEWSGROUP and ANSWERS using greg NARNE...

대략 10년 전 | 0

| 수락됨

답변 있음
Feature selection using neural network
The most important of I inputs in "I"nput matrices with I rows and N columns depends on the "O"utput target matrix with O rows a...

대략 10년 전 | 0

| 수락됨

답변 있음
How to view number of iteration in neural network?
If you use the command line window, that and other useful info is contained in the training record tr: [ net tr ] = tra...

대략 10년 전 | 0

| 수락됨

답변 있음
I get a "Performance function replaced with squared error performance" warning when trying to set 'crossentropy' as the performance function.
Crossentropy is, theoretically, not appropriate for regression. Classically, it is only used for classification and pattern-...

대략 10년 전 | 3

답변 있음
Training feedforward neural network
For N I-dimensional input vectors from c classes, the corresponding N target vectors are {0,1} c-dimensional unit vectors: [...

대략 10년 전 | 0

답변 있음
Narnet Forecast with removedelay and closeloop
Please revisit my calculations of significant lags. 1. abs(autocorrt) should be sorted 2. The significant correlation thre...

대략 10년 전 | 0

| 수락됨

답변 있음
Equation From a simple feedforward neural network
You forgot that the net uses the default MAPMINAX to normalize the input and target before training and, then, to denormalize th...

대략 10년 전 | 0

| 수락됨

답변 있음
Which one can be better for noisy time series: the Autoregressive model or Non-Linear Autoregressive Neural network?
1. Significant autocorrelation delays were not calculated 2. No reason was given for for H = 5. What is the length of the ser...

대략 10년 전 | 0

| 수락됨

답변 있음
Narxnet Multistep forecast within the time series
1. NARXNET and TIMEDELAYNET require: All input delays to be increasing (not necessarily consecutive) and NONNEGATIVE. All in...

대략 10년 전 | 1

| 수락됨

답변 있음
Data replication Neural Networks Matlab
1. I don't understand your question. 2. a. OVERFITTING means there are more unknown weights, Nw, than independent training eq...

대략 10년 전 | 0

| 수락됨

답변 있음
Does NARX use the current value of the eXogenous input?
The default input delay ID = 1:d, (d=2) does not use the current value. However, if you wish to use the current value, just a...

대략 10년 전 | 0

| 수락됨

답변 있음
Neural Nets: gradient descent issue for polynomial functions
Apparently, a target variance of 9e10 is too much for feedforwardnet to handle. Standardization(zero-mean/unit-variance) does th...

대략 10년 전 | 1

| 수락됨

답변 있음
Arranging the input and target matrix in Artificial neural network classification problem.
1. Please reformat your post so that the code will run when cut and pasted. 2. Assuming every thing else is OK, you need to h...

대략 10년 전 | 0

| 수락됨

더 보기