Réponse apportée
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 ...

environ 9 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 9 ans il y a | 0

Réponse apportée
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...

environ 9 ans il y a | 0

| A accepté

Réponse apportée
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 ...

environ 9 ans il y a | 1

| A accepté

Réponse apportée
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...

environ 9 ans il y a | 0

Réponse apportée
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...

environ 9 ans il y a | 0

| A accepté

Réponse apportée
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 ...

environ 9 ans il y a | 0

Réponse apportée
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...

environ 9 ans il y a | 1

| A accepté

Réponse apportée
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...

environ 9 ans il y a | 0

Réponse apportée
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...

environ 9 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 9 ans il y a | 0

Réponse apportée
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 ...

environ 9 ans il y a | 0

| A accepté

Réponse apportée
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 ...

environ 9 ans il y a | 1

Réponse apportée
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...

environ 9 ans il y a | 0

| A accepté

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

environ 9 ans il y a | 0

| A accepté

Réponse apportée
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 = ...

environ 9 ans il y a | 0

| A accepté

Réponse apportée
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 ...

environ 9 ans il y a | 1

| A accepté

Réponse apportée
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...

environ 9 ans il y a | 0

Réponse apportée
Time-series forecasting from multiple timeseries
The MATLAB timeseries equations are valid for vectors. Therefore, multiple inputs and outputs are easily accommodated. The o...

environ 9 ans il y a | 0

| A accepté

Réponse apportée
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 ...

environ 9 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 9 ans il y a | 0

Réponse apportée
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...

environ 9 ans il y a | 1

| A accepté

Réponse apportée
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. *...

environ 9 ans il y a | 0

Réponse apportée
How to disable popup of training windows for neural network in matlab
net is never defined. Hope this helps. Greg

plus de 9 ans il y a | 0

| A accepté

Réponse apportée
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...

plus de 9 ans il y a | 0

| A accepté

Réponse apportée
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...

plus de 9 ans il y a | 0

| A accepté

Réponse apportée
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...

plus de 9 ans il y a | 0

| A accepté

Réponse apportée
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...

plus de 9 ans il y a | 0

Réponse apportée
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...

plus de 9 ans il y a | 0

| A accepté

Réponse apportée
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.

plus de 9 ans il y a | 0

Charger plus