답변 있음
How to create training data set for signature verification?
[ 7 120 ] = size(input) [ 12 120 ] = size(target) target columns are columns of eye(12) Hope this helps *Thank yo...

대략 8년 전 | 1

| 수락됨

답변 있음
How to use Neural Network Error as a Feedback Input
THAT IS WHAT HAPPENS AUTOMATICALLY WHEN YOU TRAIN THE NET ! SEE THE FIGURE net = train(net,x,t) figure Hope this helps...

대략 8년 전 | 0

답변 있음
I have some training data and some test data. Can anyone tell me is training data is the input data or it is desired data in wavelet neural network?
Correct notation: x input t target = desired output y output = net(x) e error = t - y % Reference output and MeanS...

대략 8년 전 | 0

답변 있음
How to aviod creating a fully connected neural network in matlab?
The answer to your question is : Yes it is possible to do. HOWEVER, there is no MATLAB function available for doing so. ...

대략 8년 전 | 0

답변 있음
What drives the memory usage in the Neural Network Toolbox?
N0 =158 samples define AT MOST, a N = 157-dimensional space. Therefore, if this is serious work and you have no more data,...

대략 8년 전 | 1

답변 있음
How neural network output is calculated ?
If your outputs are constrained to [ 0, 1 ] use SOFTMAX If your outputs are constrained to [ -1, 1 ] use TANH Otherwise us...

대략 8년 전 | 1

답변 있음
I have some training data and some test data. Can anyone tell me is training data is the input data or it is desired data in wavelet neural network?
Your description should be reformatted to prevent confusion. data = design + test design = training + validation dat...

대략 8년 전 | 0

답변 있음
How to aviod creating a fully connected neural network in matlab?
The neural net for regression and curvefitting is FITNET (special case of feedforwardnet). For details see the documentation ...

대략 8년 전 | 0

답변 있음
neural network based classification -signal processing
The correct function for neural network classification and pattern recognition is PATTERNNET. See the documentation via help...

대략 8년 전 | 0

답변 있음
How neural network output is calculated ?
When you calculate the output of a net you have to take into account that values in the calculations are scaled, by default,...

대략 8년 전 | 0

| 수락됨

답변 있음
The Understanding of the process of (Multi-step Forecasting using "NARX")
NARXNET requires an input. If you do not have a future input you can do the following 1. DESIGN 2 NARNETS: one for input and...

대략 8년 전 | 0

| 수락됨

답변 있음
Neural Network initialization?
MATLAB will automatically initialize unweighted nets before training. MATLAB will continue to train a preweighted net Ther...

대략 8년 전 | 0

답변 있음
Can I use parameters of different network training functions with each other?
You can answer your own question via trial and error. Greg

대략 8년 전 | 0

답변 있음
How I can use rand('seed', ??) for neural network model?
Read the documentation in help rand and doc rand Hope this helps. *Thank you for formally accepting my answer*...

대략 8년 전 | 0

답변 있음
How to use sigmoidal function in neural network?
In general 1. Transform inputs to [-1,1] 2. For regression/curvefitting a. Transform targets to [-1,1] b. Use th...

대략 8년 전 | 0

답변 있음
Neural network accuracy improves on retraining without weight reinitialisation
A net with former weights will continue training from those weights. If you wish to reinitialize to get an alternate design u...

대략 8년 전 | 0

| 수락됨

답변 있음
Neural network: train() behavior with earlier results
"Need to process" doesn't provide useful information. What are you trying to design? Curvefitter/Regressor? PatternRecognizer...

대략 8년 전 | 0

답변 있음
Optimal hidden nodes number
BASIC MATLAB NN DESIGN ASSUMPTIONS The summary statistics of the Training, Validation and Test subsets are sat...

대략 8년 전 | 0

답변 있음
Optimal hidden nodes number
I have posted hundreds of examples in both the NEWSGROUP (comp.soft-sys.matlab) and ANSWERS that determine the optimal number of...

대략 8년 전 | 0

| 수락됨

답변 있음
Understand number of weights of Neural Network
You are THOROUGHLY CONFUSED! You do not understand MANY fundamental concepts. 1. [ trainednet, trainingrecord] = ...

대략 8년 전 | 1

| 수락됨

답변 있음
Is it possible to change some properties of only a subset of units (neurons) in a hidden layer?
The best way to pursue this is to have multiple hidden layers IN PARALLEL, each connected between the input and output layers bu...

대략 8년 전 | 0

답변 있음
how can i predict one week later(multistep prediction), this code just predicts one step in the future please make my code right(it's about wind speed prediction with 3 input parameter(pressure, humidity, temperature) and one target(wind speed)
Insuficient info; HOW LONG IS ONE DELAY ... 1 second? 1 minute? 1 hour? 1 day?... although you can recursively predict ...

대략 8년 전 | 0

| 수락됨

답변 있음
How to implement cross validation in neural network for time series prediction
If you have to maintain the original spacing, one way to use f-fold XVAL in time series is illustrated below for f = 10 1. D...

대략 8년 전 | 0

답변 있음
Train neural network on a single image set?
If you do not train with alternative inputs you will probably have too many false positives. Hope this helps *Thank you fo...

대략 8년 전 | 0

답변 있음
How to get the percentage of image matching in neural network?
You train a net with inputs and corresponding targets. Now you want to know what to do if you use something different as an i...

대략 8년 전 | 0

답변 있음
How to do incremental training using 2 batches of dataset, where the tool is anything except neural network
The new training will override the old. Therefore you have to either a. Add the old training set to the new one or b. ...

대략 8년 전 | 1

| 수락됨

답변 있음
Is it okay to use this code for trained network forecasting in NARX?
If you want to forecast, use DIVIDEBLOCK. otherwise YOU ARE JUST INTERPOLATING, *Thank you for formally accepting my an...

대략 8년 전 | 0

| 수락됨

답변 있음
how to predict from a trained neural network ?
1. Your code should yield an error because you have not defined y. here are two ways to define output y, error e and normaliz...

대략 8년 전 | 0

| 수락됨

답변 있음
Help with isnan with two matrices of unequal dimensions
Separate the 2 searches. Hope this helps *Thank you for formally accepting my answer* Greg

대략 8년 전 | 0

답변 있음
could anyboby help me to solve the error
i is undefined However if i were defined U(i) would probably be incorrect because U is 2 dimensional. You probably have to...

대략 8년 전 | 0

| 수락됨

더 보기