Answered
how to create my ownfitnet neural network? i have written code to calculate square root of number, plz help me to find the problem with it.
Replace net.plotFcns = {'plotperform','plottrainstate','ploterrhist', ... 'plotregression', 'plotfit'}; with either ...

12 years ago | 1

| accepted

Answered
Can I use divideind after using a dividerand in Neural Networks?
If you did this in order to know which examples are in each division subset, it is not necessary because if you use the syntax [...

12 years ago | 0

| accepted

Answered
neural net performance function 'msereg' disabled in 2013B
It was probably discontinued because mse now has a regularization option. help mse HTH *Thank you for formally accepti...

12 years ago | 0

| accepted

Answered
How to train the neural network?
You are way off base. 1. Time series functions are timedelaynet, narnet and narxnet. 2. Read the time series documentation...

12 years ago | 0

| accepted

Answered
bias and variance of trained neural network
[x,t] = simplefit_dataset; net = fitnet(4); rng(0) [ net tr y e ] = train(net,x,t); biaserr = mean(e(:)) varerr = va...

12 years ago | 2

| accepted

Answered
weekly rainfall forecasting using ann tool
Begin by searching previous posts in the NEWSGROUP and ANSWERS. Depending on exactly what you want, use one of the three time-se...

12 years ago | 0

| accepted

Answered
How can I design my own fitting neural network?
Always start with the default configuration. help fitnet Combine with the script obtained via the nntool GUI. You als...

12 years ago | 0

| accepted

Answered
How to use ftinet to create neural network
This is a poor example: N = 10 is not large enough to obtain robust practical solutions. With [I N ] =size(x) = [ 3 10 ], [O N...

12 years ago | 1

| accepted

Answered
Artificial Neural Network Prediction Code in Matlab, please help !!!
1. Plot a. Rainfall vs time b. Water Level vs time c. Water Level vs Rainfall d. Autocorrelation function...

12 years ago | 1

| accepted

Answered
I don't Know why my neural network doesn't give good results
This is a classic case of overtraining an overfit net: DIVIDETRAIN: Nw = (5+1)*58+(58+1)*1 = 348 + 59 = 407 % Unknown wei...

12 years ago | 1

| accepted

Answered
back propagation neural network
Search on one or more of the following greg fitnet Ntrials greg patternnet Ntrials greg feedforwardnet Ntrials

12 years ago | 1

| accepted

Answered
I have aproblem in newelm
Your values of wb(k) are in the wrong order. Try IW = cell2mat(net.IW) b = cell2mat(net.b) LW = cell2mat(net.LW) HTH ...

12 years ago | 0

| accepted

Answered
Prediction ability of a neural network
1. Probably (I've forgotten the definition of a finite state machine, but the NN is a universal approximator) 2. The net is n...

12 years ago | 0

| accepted

Answered
what is the difference between feed forward and feed back methodology? Does the number of epochs in the neural network concept is the same defining the concept of back propagation methodology?
Feed-forward nets are used when there are no physical or mathematical constraints on the order of data presentation. In particul...

12 years ago | 0

| accepted

Answered
How to create a custom Neural Network?
See the NN Toolbox documentation. If you have specific questions, please submit code, comments and error messages. Hope ...

12 years ago | 0

| accepted

Answered
How to train labels for image blocks using neural network?
Form 2 matrices input columns are columnized matrices (which may be the result of using feature extraction on the original ma...

12 years ago | 0

| accepted

Answered
How can I use individual matrices for training, cross validation and testing of my neural network?
I can't think of an alternate way. What is wrong with putting them all in one matrix?

12 years ago | 0

| accepted

Answered
How can I input two images into neural network?
Features should be extracted from each image. The features should be assembled into a vector. The type of net should be static...

12 years ago | 0

| accepted

Answered
After saving results of a Network of 300x2 input matrix and 300x7 target matrix. How can one gets the seven values column giving two inputs value?
ynew = net(xnew); Hope this helps. *Thank you for formally accepting my answer* Greg

12 years ago | 0

| accepted

Question


Is there a bug?
Most of the time I have to wait 10 seconds or more before I can type into a comment or answer box. Am I alone?

12 years ago | 1 answer | 0

1

answer

Answered
nntoolbox change transfer function parameters
I looked at the GUI and did not see any way to change the creation function, transfer functions or training function. Sorry, ...

12 years ago | 0

| accepted

Answered
bootstraping for neural network
Training errors are biased because the same data is used for creation and evaluation. Attempts to mitigate the bias involve r...

12 years ago | 0

| accepted

Answered
How can I add one more hidden layer to ANN wizard?
A second hidden layer will not improve performance if your single hidden layer model is optimized. size(input) = ? size(targ...

12 years ago | 1

| accepted

Answered
implementation help of Gaussian RBM in matlab
doc zscore help zscore doc mapstd help mapstd Hope this helps. * Thank you for formally accepting my answer* ...

12 years ago | 0

| accepted

Answered
Neural Networks Time Series toolbox: confidence interval for predictions?
There is no automatic estimation of confidence intervals. However, when the hidden layer transfer functions are sigmoidal, o...

12 years ago | 1

| accepted

Answered
is there a toolbox where...
help narxnet help narnet help timedelaynet

12 years ago | 0

| accepted

Answered
I how to divide target data for feed forward network.
I don't believe a 20K dataset is needed to train/val/test the net. I recommend designing with smaller multiple sets of data and ...

12 years ago | 0

| accepted

Answered
rainfall forecasting using neural network
Input forecasting: help timedelaynet Feedback forecasting: help narnet Input and Feedback forecasti...

12 years ago | 0

| accepted

Answered
How to calculate the accuracy in neural network?
That works. However it is generally more useful to obtain the training, validation and testing error of each class. If you s...

12 years ago | 0

| accepted

Load more