답변 있음
MATLAB NN toolbox does not give the expected weights and bias amount after trained the network
Use the special cases of feedforwardnet a. fitnet for curvefitting and regression b. patternnet for clas...

대략 7년 전 | 0

답변 있음
What is Sliding Window Approach and its algorithm?What is its application in neural network?
Simplest example of a sliding window approach y( 1 ) = f( x( 1 : n ) ); y( 2 ) = f( x( n+1 : 2 * n ); y( 3 ) = f(...

대략 7년 전 | 0

답변 있음
Need help! I try to build Neural Network but it does not fit well with the training data!
>> Vp = Input * W1; Error using * >> size(Input), size(W1) ans = 158 4 ans = ...

대략 7년 전 | 1

| 수락됨

답변 있음
What formula is used when setting net.performParam.nor​malization = 'standard' in combination with MSE
It is just a straightforward linear transformation. For the target, t: tn = a*t +b -1 = a*tmin + b 1 = a*tmax + b...

대략 7년 전 | 0

| 수락됨

답변 있음
why inputs and targets have diffrent sampels?
For I-dimensional "I"nputs and O-dimensional "O"utput targets After reading in inputs and targets ALWAYS CHECK THE DIMENSION...

대략 7년 전 | 0

| 수락됨

답변 있음
How to use a personal function to normalization data in the neural network
See the documentation >> help nnparam.normalization and >> doc nnparam.normalization Hope this helps Thank you for formally...

대략 7년 전 | 0

| 수락됨

답변 있음
Is it normal that one neuron in the hidden layer is sufficient for a neural network with 56 inputs and one output?
If your training data is sufficient, the most stable designs occur when the training goal is satisfied wit h a minimum number of...

대략 7년 전 | 0

| 수락됨

답변 있음
Help with creating a Newton-Raphson algorithm function
Add the line ans = ans Hope this helps. Thank you for formally accepting my answer Greg

대략 7년 전 | 0

질문


WHY AM I UNABLE TO PASTE FROM MATLAB OR NOTEPAD INTO ANSWERS???
SHEESH !!! MATLAB VERSION 9.4.0.813654 (2018a) Greg heath@alumni.brown.edu

대략 7년 전 | 답변 수: 0 | 0

0

답변

답변 있음
divide training set into validation but test on a different set in NN
I have an answer BUT FOR SOME REASON, CANNOT PASTE IT INTO THE ANSWER BOX HELP !!! heath@alumni.brown.edu

대략 7년 전 | 0

답변 있음
How to set performance weights for crossentropy in patternnet?
See both help crossentropy and doc crossentropy In the latter see the secti...

7년 초과 전 | 0

질문


MATLAB: WHAT ARE THE CORRECT RESPONSES TO THE FOLLOWING HELP QUERIES ?
ver ------------------------------------------------------------- MATLAB Version: 9.4.0.813654 (R2018a) MATLAB License Nu...

7년 초과 전 | 답변 수: 1 | 0

1

답변

답변 있음
Why the neural network creates the same output values for the different inputs?
Where is your training data? Typically, the data division is train/val/test = 70%/15%/15% Hope this helps, Greg...

7년 초과 전 | 0

답변 있음
How to verify that the ann model is correct?
Comparing outputs with targets is usually sufficient Hope this helps. *Thank you for formally accepting my answer* Gre...

7년 초과 전 | 0

질문


WHAT MORE IS NECESSARY FOR A GOOD NEURAL NET DESIGN?
x = input; t = target; 1. [I N ] = size(x) [O N ] = size(t) 2. The default(AUTOMATIC & RANDOM...

7년 초과 전 | 답변 수: 0 | 0

0

답변

답변 있음
Test trained network with different input sizes
All input vectors must have the same length as the training input column vectors. Then the output vectors will always have the ...

7년 초과 전 | 0

| 수락됨

답변 있음
Use regularization with trainlm - negative performance
0. SEE BELOW AND POST ANY DIFFICULTIES 1. Read the documentation and try the examples help trainbr and doc trainbr...

7년 초과 전 | 0

답변 있음
Where I can found Matlab script for the prediction-of-reservoir-properties-using-Neural-Network?
If you have a list of inputs and the corresponding target for each input, see the documentation in help fitnet and do...

7년 초과 전 | 0

| 수락됨

답변 있음
How can I get MSE and normalized MSE both as performance function when fitting Feed forward neural network?
Divide MSE by the mean variance of the target rows (MSE of the constant output model) MSEref = mean(var(target',1)) NMSE...

7년 초과 전 | 0

| 수락됨

답변 있음
How to train a neural network, working on eeg, to deal with missing channels
You may have to create a series of increasingly sophisticated interpolation techniques. 1. Start with a baseline of zeros fo...

7년 초과 전 | 0

답변 있음
What is the sturcture of the FITNET?
FITNET is the default net for curveFITting and regression. It is the standard configuration that comes to mind whenever anyon...

7년 초과 전 | 1

| 수락됨

답변 있음
Is it possible to use recurrent neural network for classification type problems?
It could happen; but don't count on it because there is no reason why it should be any better than without it. Greg *Thank...

7년 초과 전 | 0

답변 있음
neural network for multiple output regression matlab using trainNetwork
No. Read the documentation help trainNetwork and doc trainNetwork Hope this helps. *Thank you for formally acce...

7년 초과 전 | 0

답변 있음
How to the coding should be for a neural pattern recognition & classification of 3 input and 1 binary output?
Typically, c-class Classifiers of I-dimensional inputs are trained with input and target matrix sizes [I N ] = size(input) ...

7년 초과 전 | 1

| 수락됨

답변 있음
If I want to make a prediction from a neural net, do I have to use the same random number generator seed?
Once a net is trained, the state of the rng is irrelevant since random numbers have no part in typical output approximations. ...

7년 초과 전 | 0

| 수락됨

답변 있음
How to use neural networks for spatial prediction ?
Normalize each input independently of the others. However, it is always wise to first check the input variable correlation co...

7년 초과 전 | 0

| 수락됨

답변 있음
NARX Time series prediction
Don't take Greg too seriously. Sometimes he doesn't take enough time when reading posts. Since size(A) = [ 1 2 ] A has t...

7년 초과 전 | 1

답변 있음
Minimum size Neural Network to represent a Boolean Function
In general 1. A single tanh hidden layer with a linear output layer is always a sufficient minimum MSE approximator for bound...

7년 초과 전 | 0

답변 있음
How to aviod creating a fully connected neural network in matlab?
That is why I "invented" the straightforward method of looping over number of hidden nodes. Search BOTH the NEWSGROUP and ANS...

7년 초과 전 | 0

답변 있음
trying to compare neural network with no hidden layers with logistic regression
No hidden nodes default is the same as LINEAR REGRESSION NOT LOGISTIC REGRESSION For logistic regression, you ...

7년 초과 전 | 0

더 보기