Réponse apportée
Question on "newlind" from Neural Network Toolbox
Use the type command: type newlind Hope this helps *Thank you for formally accepting my answer* Greg

presque 12 ans il y a | 1

Réponse apportée
How to take training data from different indexes in a matrix in nprtool ?
net.divideParam.trainInd = [1:272, 546:1372]; Hope this helps *Thank you for formally accepting my answer* Greg

presque 12 ans il y a | 0

| A accepté

Réponse apportée
How can I predict new values in NARnet after it has been trained?
inPutss = xlsread('Datos','Hoja2'); targetSeries = tonndata(inPutss,false,false); feedbackDelays = 1:2; hiddenLayerSize =...

presque 12 ans il y a | 0

| A accepté

Réponse apportée
Lag in output from NarNetwork (narnet)
The net was trained with 6 delays. Why don't you expect it to show in the plots? Hope this helps. *Thank you for formally ...

presque 12 ans il y a | 1

| A accepté

Réponse apportée
How to get basic predictions out of a neural network?
[ Ys Xf Af ] = net(Xs,Xi,Ai); Ypred = net(cell(1,M),Xf,Af); Hope this helps. *Thank you for formally accepting my answ...

presque 12 ans il y a | 0

| A accepté

Réponse apportée
How to forecast y(t+N) using removedelay function for NARX model
There seems to be a misconception: An openloop feedback design is not deployable because it depends on target feedback. T...

presque 12 ans il y a | 2

| A accepté

Réponse apportée
What does "Vectors must be the same lengths." mean?
Use the command whos to check the dimensions of all the variables. Your error flag indicates that size(t) and size( ...

presque 12 ans il y a | 0

| A accepté

Réponse apportée
Best Validation check number for MATLAB neural network
That is not necessarily a problem. What error rates are you getting as you vary the number, H, of hidden nodes and sets of ra...

presque 12 ans il y a | 0

| A accepté

Réponse apportée
is my code correct for a multi-input Time Delay Neural Network?
1. I find it hard to believe that you need 20 inputs to predict one output. 2. You can find a much simpler basic code using ...

presque 12 ans il y a | 1

| A accepté

Réponse apportée
How can I get access to network's weights in 'adapt' function after each presentation of an input
getwb(net) But how does this help?

presque 12 ans il y a | 0

| A accepté

Réponse apportée
Neural Network Regression Score
You say you get a great MSE value however R^2 = 1-MSE/MSE00 = 0.77 where MSE00 = mean(var(target',1)) Therefore, y...

presque 12 ans il y a | 1

Réponse apportée
Finding best neural network structure using optimization algorithms and cross-validation
The outline I gave was NOT the standard k-fold cross-validation where, for each H candidate, the data is divided into k indivisi...

presque 12 ans il y a | 3

Réponse apportée
Finding best neural network structure using optimization algorithms and cross-validation
To help understanding, I will assume Nval = Ntst = 0. Search for the nonzero examples in the NEWSGROUP and ANSWERS. To design...

presque 12 ans il y a | 3

| A accepté

Réponse apportée
how can I access the weight??? and bias??
If you you normalize your inputs and targets using maxmin or mapstd, the function for the normalized variables is yn = B2 +...

presque 12 ans il y a | 1

| A accepté

Réponse apportée
how do i collect data for neural networks
help nndata Greg

presque 12 ans il y a | 0

Réponse apportée
how do i construct neural network
What you are asking doesn't make much sense. For a standard universal approximation I-H-O net the number of weights are Nw ...

presque 12 ans il y a | 0

| A accepté

Réponse apportée
How to decide the range for weights and bias based on input data set ?
You can but you do not have to. By default, variables are normalized to [-1,1] and the initial weights are automatically determi...

presque 12 ans il y a | 2

| A accepté

Réponse apportée
how can I access the weight??? and bias??
clear all, clc [x,t] = simplefit_dataset; net = fitnet; rng(0) net = train(net,x,t); IW = net.IW{1,1} b1 ...

presque 12 ans il y a | 1

Réponse apportée
Ensembling of neural networks
What is optimal load shedding? Why do you think you need it? Why do you think you need an ensemble? size(input) = [ ? ...

presque 12 ans il y a | 1

Réponse apportée
why my regression plot is inverse
Oh! You you have a classifier with {0,1} targets! You are probably using the wrong function. Use patternnet (not fitnet or fe...

presque 12 ans il y a | 1

| A accepté

Réponse apportée
After training my Neural Network, how do I use it?
The first thing you need to do is determine the significant lags of the autocorrelation function obtained from the training frac...

presque 12 ans il y a | 1

| A accepté

Réponse apportée
How to use narxnet for new set of data?
1. The best way to solve a problem is to use the MATLAB example data with which we are familiar help nndata 2. It doesn't ...

presque 12 ans il y a | 2

| A accepté

Réponse apportée
why my regression plot is inverse
Default solutions depend on random trn/val/tst data divisions, random weight initializations and the choice of the number of hid...

presque 12 ans il y a | 1

Réponse apportée
How can I get all possible solutions for an equation?
Some or all of the solutions can probably be obtained via recursion. Given a, b=1/a and x(1), try x(n+1) = arcsin(a*x(n))...

presque 12 ans il y a | 1

| A accepté

Réponse apportée
how do i generate samples of two input xor gate for neural networks
You mean 32 examples (a single sample is a set of multiple examples). There are only 4 possible inputs. They are obvious. ...

presque 12 ans il y a | 1

| A accepté

Réponse apportée
How to use narxnet for new set of data?
1. Test netc with the original data. If performance is lousy, train it starting with the existing weights from the openloop desi...

presque 12 ans il y a | 2

Réponse apportée
What is the Input and the Target for this case in the Time Series Tool (Neural Networks Tool)?
1. Find the statistically significant lags using the autocorrelation function. Search greg nncorr 2. Use a subset of the ...

presque 12 ans il y a | 1

Réponse apportée
how do i collect data for neural networks
N examples of an I-dimensional input and the corresponding O-dimensional target output: [ I N ] = size(input) [ O N ] = ...

presque 12 ans il y a | 0

| A accepté

Réponse apportée
Am I computing cross entropy incorrectly?
If c classes are mutually exclusive, classifier target probability values should be the certain probability values of 0 or 1 and...

presque 12 ans il y a | 2

| A accepté

Réponse apportée
Am I computing cross entropy incorrectly?
You are using the Xent form for outputs and targets that do not have to sum to 1. The corresponding output transfer function is ...

presque 12 ans il y a | 1

Charger plus