Respondida
we have a set of experimental values which has 2 input and 2 output values. what is the simple prediction rule using Artificial Neural Network and Genetic Algorithm?
1. I cannot recommend the genetic algorithm for neural networks. So far I have seen no successful examples. For example, search ...

alrededor de 9 años hace | 0

| aceptada

Respondida
Adapt (Neural Network ToolBox ) - Error using .* Matrix dimensions must agree
0. NOTE: Quotation marks are only used for emphasis 1. Generally, N = 20 "N"umber of instances is not enough to adequately d...

alrededor de 9 años hace | 0

Respondida
Time series prediction: R nearly 1 but MSE very high
The relationship between R and MSE is R = sqrt( 1 - MSE/mean(var(target',1))) Therefore the conclusion is that the mean t...

alrededor de 9 años hace | 0

| aceptada

Respondida
Same neural network training result each time at "dividerand" option
When you reboot, the RNG goes into the default state. Therefore begin with states different from default and 0. Hope this ...

alrededor de 9 años hace | 1

| aceptada

Respondida
Same neural network training result each time at "dividerand" option
You are mistaken. When the rng is repeatedly set to a certain value, The resulting string of PSEUDO-RANDOM numbers is repeate...

alrededor de 9 años hace | 0

Respondida
How can I incorporate the adapt function into my code?
% I'm just a beginner when it comes to neural networks, and I can't seem to figure out how to incorporate the adapt function int...

alrededor de 9 años hace | 0

| aceptada

Respondida
Neural Network fitting toolbox (nftool). Input-output fitting problem.
help divideind doc divideind and https://www.google.com/?gws_rd=ssl#q=divideind Hope this helps. *Thank you for ...

alrededor de 9 años hace | 0

Respondida
Problem: feed-forward neural network - the connection between the hidden layer and output layer is removed.
% Hi Greg and Brendan. Thanks for your reply. % % Well, after struggling reading the Matlab documentation, % I think I unde...

más de 9 años hace | 1

| aceptada

Respondida
How can i train the hidden layer of a RBF NN?
Search both NEWREADER and ANSWERS using greg newrb You will find many training NEWRB examples. Make sure the example i...

más de 9 años hace | 0

Respondida
How to mute the popup window, when I run neural network in code ?
%Before training: net.trainParam.showWindow = 0; Hope this helps. *Thank you for formally accepting my answer* Greg...

más de 9 años hace | 0

| aceptada

Respondida
Problem: feed-forward neural network - the connection between the hidden layer and output layer is removed.
Hi everybody. I am facing a strange problem with Matlab and, in particular, the training of a feed-forward neural networ...

más de 9 años hace | 0

Respondida
How to create a training data set?
Data consists of N pairs of I-dimensional "I"nputs and corresponding O-dimensional "O"utput targets. They are presented in 2 ...

más de 9 años hace | 0

| aceptada

Respondida
Split array into training and testing
Your answer should be simply obtained from the divideblock documentation (help and/or doc). From the help documentation example ...

más de 9 años hace | 1

Respondida
Why do the outputs of a NARX Neural Network obtained with Simulink are different from the outputs obtained with Matlab script?
The timeseries for inputs should be rows, not columns Hope this helps. *Thank you for formally accepting my answer* Gre...

más de 9 años hace | 0

| aceptada

Respondida
Prediction using Neural Network Toolbox
FITNET is the default MATLAB function for regression and curvefitting help fitnet doc fitnet Hope this helps *Thank...

más de 9 años hace | 0

| aceptada

Respondida
How to build neaural network with given input and weight matrix?
% Use the help and doc commands for definitions with examples close all, clear all, clc [x,t] = iris_dataset; net1 = ...

más de 9 años hace | 0

| aceptada

Respondida
Is it possible to get a valid or same results after each run of a matlab generated script on a saved narxnetwork by toolbox?
Try initializing the random number generator to the same initial state. For examples search the NEWSGROUP and ANSWERS using ...

más de 9 años hace | 1

| aceptada

Respondida
Multiple input NARX?
Vector inputs and targets are relatively easy to use because the MATLAB equations are in matrix form. If you search for nonsc...

más de 9 años hace | 0

Respondida
Time-series forecasting from multiple timeseries
The MATLAB timeseries equations are valid for vectors. Therefore, multiple inputs and outputs are easily accommodated. The o...

más de 9 años hace | 0

| aceptada

Respondida
How many degrees should be counted for computing the adjusted R^2 of a neural network?
Consider N pairs of I-dimensional "I" nput vectors and O-dimensional "O"utput target vectors. If Ntrn is the number of training ...

más de 9 años hace | 0

| aceptada

Respondida
How do I get the mse after trainin a NN?
There is no reason to consider individual vector components. Rewrite your code in vector form like most of the code that is p...

más de 9 años hace | 0

Respondida
Neural network multiple output with different units
Standardize variables to zero mean and unit variance using ZSCORE. help zsore doc zscore Good designs will have MSE < 1...

más de 9 años hace | 1

| aceptada

Respondida
nerual network not working????
Your input must have 13 rows and your target 1 row [ 13 N ] = size(input) [ 1 N ] = size(target) Hope this helps. *...

más de 9 años hace | 0

Respondida
How to disable popup of training windows for neural network in matlab
net is never defined. Hope this helps. Greg

más de 9 años hace | 0

| aceptada

Respondida
how to predict future values?
If you need to predict 3 years ahead, then you should practice on data spaced 3 years apart. The autocorrelation function of...

más de 9 años hace | 0

| aceptada

Respondida
how to get image after training in a neural network
Your output will be in matrix form which can be converted to an image. The type of image will determine the type of conversio...

más de 9 años hace | 0

| aceptada

Respondida
i want use multi layer Perceptron not using nntool using this code
After reading the EXCEL files you have to convert them to MATLAB matrices with sizes [ I N ] = size(input) [ O N ] = siz...

más de 9 años hace | 0

| aceptada

Respondida
How can i get a classifier at the neural network toolbox in matlab r2015b
Regression net: help fitnet doc fitnet Classifier net: help patternnet doc patternnet ALSO: You can search the...

más de 9 años hace | 0

Respondida
future value prediction using narx
Scanty info. [ Xc Xci Aci Tc ] = preparets(netc,X,{},T); [ Yc Xcf Acf ] = net(Xc, Xci, Aci); where (Xci,Aci) and (Xcf...

más de 9 años hace | 0

| aceptada

Respondida
Hi, when trying my neural network (input data to evaluate) I recieve an array answer instead of the desired one, which would be either one or zero. How can I solve this? Mi target array IS only ones and zeros.
With or without examples, inadequate problem explanations tend to result in inadequate problem solutions.

más de 9 años hace | 0

Cargar más