回答済み
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

| 採用済み

さらに読み込む