Respondida
Dynamic Neural Network [NARX] - How to use training set
Most neural networks are , in general, multi-input/multi-output. Just interpret the input, hidden and output variables as column...

casi 13 años hace | 0

| aceptada

Respondida
How to write my own neural network transfer function which gives discrete outputs 1,2,3.
You don't need anything special. Just use fitnet with targets of 1,2,3. You will end up with a continuum of outputs. For examp...

casi 13 años hace | 0

Respondida
How to write my own neural network transfer function which gives discrete outputs 1,2,3.
Not enough info. Why do you need to do this? Are inputs discrete or conntinuous? If the former, you might be able to us...

casi 13 años hace | 0

| aceptada

Respondida
starter questions for neural network
1.Will nftool be suitable for this analysis? Yes After opening nftool, 2.Can my inputs be of different elements? ...

casi 13 años hace | 0

| aceptada

Respondida
Image Processing with Backpropagation algorithm
Backpropagation is not used to directly create a data base. However, if you have a data base of inputs and targets, one of th...

casi 13 años hace | 1

| aceptada

Respondida
What are the reasons for having different outputs after several runs?
The short answer is that train(only if all weights are zero) or configure( anytime) assign weights depending on the state of the...

casi 13 años hace | 2

| aceptada

Respondida
how can i use arteficial nural network on images using matlab
There are many ways. You have to be specific. You can start by searching NEWSGROUP and ANSWERS by searching on neural image ...

casi 13 años hace | 0

| aceptada

Respondida
Feedforwardnet for XOR problem with logsig transfer function
Reduce confusion: Never use feedforwardnet. Use fitnet for regression or curve-fitting. Use patternnet for classification ...

casi 13 años hace | 1

| aceptada

Respondida
how to test a trained network with new data?
trueclass = vec2ind(target) % Unit vector target columns --> class indices [net tr output ] = train(net,input,target)...

casi 13 años hace | 0

| aceptada

Respondida
How Can I Auto-save an Image of Neural Network Architecture
I couldn't find the post online and my computer with MATLAB is down. I'm pretty sure it was done by assigning a name or figure n...

casi 13 años hace | 0

Respondida
How Can I Auto-save an Image of Neural Network Architecture
This question has been asked by me in the past. Try searching using a subset of neural save view greg The answer was pro...

casi 13 años hace | 0

Respondida
Forecasting with Neural Network
My guess is that the fitnet function is what you want help fitnet doc fitnet Good Luck. *Thank you for formally acce...

casi 13 años hace | 0

| aceptada

Respondida
my neural network is giving same output for all inputs...do you have any idea why?
1. There is no reason to use more than one hidden layer 2. You have created a net with 8 inputs instead of 1 8-dimensional in...

casi 13 años hace | 0

| aceptada

Respondida
How to improve results for river_dataset predicting ahead
You are misusing the term validation. total = design + test design = training + validation The validation set is part ...

casi 13 años hace | 0

| aceptada

Respondida
How i can configure a neural network with hidden layer and output layer function transfer logsig?
Use patternnet for classifying into two categories. It automatically normalizes input and output to [-1,1] and uses tansig hidde...

casi 13 años hace | 0

| aceptada

Respondida
Neural network curve fitting: How to tell the net that some samples are more important than others?
Always begin by using as many defaults as possible and the help example net = finet(5) % NO semicolon! Will reveal all of th...

casi 13 años hace | 0

| aceptada

Respondida
Neural network curve fitting: How to tell the net that some samples are more important than others?
See help mse and doc mse regarding the input: error weights. Hope this helps. *Thank you for formally accepting my answer*...

casi 13 años hace | 0

Respondida
How to give feature as input to PNN(Probabilistic neural network)
See my reply in the NEWSGROUP. Greg

casi 13 años hace | 0

| aceptada

Respondida
How to generate mathematical model or equation of a Neural netwok converted by gensim o simulink
I don't know about gensim/Simulink. However, the general equation for the standard MLP is output = repmat(b2,1,N) + LW*tanh...

casi 13 años hace | 0

| aceptada

Respondida
Specifying Neural Network output range to either 0 or1
1. With only 2 classes you can replace softmax with logsig for training and use. Then either a. Use round: help round, doc...

casi 13 años hace | 0

| aceptada

Respondida
need help for choosing topology of neural network
1. Use a 10*5000 target matrix with unit vector columns from eye(10) 2. Substantially reduce the input dimensionality (e.g., ...

casi 13 años hace | 0

| aceptada

Respondida
how to predict the remaining useful life of machine using neural network
Find the significant lags of the autocorrelation function. The maximum significant lag tends to be the prediction limit. If you ...

casi 13 años hace | 2

| aceptada

Respondida
NEURAL NETWORKS GRBF
Command line help/doc newrb Search NEWSGROUP and ANSWERS newrb Search NEWSGROUP and ANSWERS rbf Typically, ...

casi 13 años hace | 0

| aceptada

Respondida
Is it possible to predict N future values with rbfnn?
1. Use the autocorrelation function to determine the significant nonzero delays of P; Use as many as needed. 2. For the purpo...

casi 13 años hace | 0

| aceptada

Respondida
Radial Basis Network with 'purelin'
If you change the hidden layer transfer to function purelin, the net is just a linear model and can be replaced by the backslash...

casi 13 años hace | 0

| aceptada

Respondida
Why Neural Network's output reduce 2 samples?
If you are using a time series net with 2 input and/or feedback delays, then this is to be expected. Otherwise, there is prob...

casi 13 años hace | 0

| aceptada

Respondida
how can i changhe the transfer function of output layer of neural network?
With obsolete (since 2010b) nets like newfit for regression/curve-fitting and newpr for classification/pattern-recognition (bot...

casi 13 años hace | 1

| aceptada

Respondida
can i use another activation function outside of the set of activation function in neural network toolbox?
Sure: edit tansig % command % save as myfunction % modify % save Hope this helps. *Thank you for formall...

casi 13 años hace | 0

| aceptada

Respondida
Feedforward neurale network including minimum and maximum values??
A typical objective of training is, given data ( DESIGN + NONDESIGN ) that can be considered to come from the same probability d...

casi 13 años hace | 0

| aceptada

Respondida
Simple linear signal prediction
After determining the number of significant delays from the autocorrelation function, use TIMEDELAYNET.

casi 13 años hace | 0

| aceptada

Cargar más