回答済み
Confusion matrix outputs NaN values after classification using Neural Network
Isn't it obvious? 1. Rows 9 and 10 contain nothing but zeros. 2. Ratios and percentages obtained by dividing by zero w...

9年以上 前 | 0

回答済み
How to disable popup of training windows for neural network in matlab
close all, clear all, clc [x,t] = simplefit_dataset; net = fitnet; net.trainParam.showWindow = 0; % <== This does it [n...

9年以上 前 | 9

回答済み
How to develop a neural network transfer function?
Use FITNET with vectors obtained from vectorizing layers. Hope this helps *Thank you for formally accepting my answer* ...

9年以上 前 | 0

| 採用済み

回答済み
How to synthetic generate features to balance dataset?
If you have multiple classes with different numbers of examples, the means and covariances of the classes can be used to generat...

9年以上 前 | 0

回答済み
how to get the best the number of hidden neurons and layers for a NARXNET?
There are zillions of my posts in both the NEWSGROUP and ANSWERS that use the criterion Ntrneq >= Nw %( number of...

9年以上 前 | 0

回答済み
Train recurrent neural network with variable length input cell vectors.
Neural networks require "I"nput column vectors with a fixed length (I). Therefore you will have to complete the columns with zer...

9年以上 前 | 0

| 採用済み

回答済み
How can I manually perform an elmannet neural network calculation?
My guess is z(t) = B1 + IW * [ x(t); z(t-1); z(t-2)]; y(t) = B2 + LW * z(t); Hope this helps *Thank you for formally...

9年以上 前 | 0

| 採用済み

回答済み
Where can I find the coefficients for my neural net input elements?
Typically, the output y is given by y = B2 + LW*tanh( B1 + IW*x) where B1 input "B"ias net.b{1} IW ...

9年以上 前 | 0

| 採用済み

回答済み
How can train a neural network, using Genetic Algorithm, I need a example in code. thank
Search NEWSGROUP and ANSWERS with greg genetic Hope this helps. *Thank you for formally accepting my answer* Greg

9年以上 前 | 0

| 採用済み

回答済み
Is possible solve the problem used ANN toolbox? (related future input)
"I"nputs are I-dimensional column vectors and "O"utput targets are O-dimensional column vectors. Then [ I N ] = size(inputmat...

9年以上 前 | 0

| 採用済み

回答済み
neural network input error
You cannot change the dimension of the inputs from 50 to 100; Hope this helps *Thank you for formally accepting my answer*...

9年以上 前 | 0

| 採用済み

回答済み
Neural Net Fitting - how to set a result goal?
I'm sure this has been discussed in both NEWSGROUP & ANSWERS at least a zillion times Try searching with greg msegoal ...

9年以上 前 | 0

回答済み
How to train ANN if my input data is in the form of signals (EMTP-ATP)?
There are two separate regions with stationary summary statistics. This can be modeled with two nets. Why does the secon...

9年以上 前 | 0

回答済み
Importance of various inputs of neural network
I don't think the analytic expression y = B2 + LW * tanh( B1 + IW * x ) will help very much Ranking a large number of ...

9年以上 前 | 0

回答済み
How to get the transfer function equation for the implemented neural network
You have to obtain xsettings and tsettings from x and t. Then apply them to x2 and t2. Hope this helps. *Thank you for ...

9年以上 前 | 0

| 採用済み

回答済み
How do I get the correct output from a fitnet artificial neural network?
1. Very often you have to use several choices of the random initial weights in order to get a good answer. 2. You forgot to t...

9年以上 前 | 1

| 採用済み

回答済み
In neural network toolbox for the function: trainautencoder, how can I use purelin for encodertranferfunction?
Using purelin in a hidden layer is a waste of time. You can get the same result by removing the layer and adjusting the outpu...

9年以上 前 | 0

| 採用済み

回答済み
In Neural Network Toolbox, how can I can change the values of training Parameters ?
1. Another way to do it is net = patternnet(hiddenlayersize); . . . net.trainFcn = 'traingdx'; [ net tr y e ] = train(n...

9年以上 前 | 0

回答済み
Coding ANN learning parameters (e.g number of hidden neurons, learning methods, learning rate, momentum, number of epoch) in Genetic Algorithm chromosome?
Search both NEWSGROUP and ANSWERS using greg genetic Hope this helps *Thank you for formally accepting my answer* ...

9年以上 前 | 0

| 採用済み

回答済み
How to change learning rate and momentum rate values in GUI application to train ANN
Use the default values and worry about 1. Number of hidden nodes 2. Initial random weights For examples search in both ...

9年以上 前 | 0

回答済み
in backpropagation learning algorithm always i used to get the same accuracy rate whatever learning rate and momentum constant is used.So, what is the solution for this
I have the same experience. What I do is use the best of multiple designs that differ by number of hidden nodes and initial r...

9年以上 前 | 0

回答済み
the learning rate inportance
I have designed zillions of NNs with MATLAB and do not remember ever having to use a nondefault value of lr. Typically, the o...

9年以上 前 | 0

回答済み
How do I create a neural network that will give multiple outputs?
x = randn(18,141); t = randn(18,141); net = feedforwardnet([ 36 36 ]); net = train(net,x,t); view(net) *Thank ...

9年以上 前 | 1

| 採用済み

回答済み
How to define the prediction horizon in neural network time series tool?
Using the standard approach outlined in doc narxet help narxnet you will get outputs every timestep after the 10th. ...

9年以上 前 | 0

回答済み
Suggest to network architecture for two class classification problem by using MLP neural network
Most of your questions can be answered from 1. The doc and help documentation examples help patternnet doc patternnet ...

9年以上 前 | 0

回答済み
NARXNET closed-loop vs open-loop
% NARXNET closed-loop vs open-loop % Asked by Yevgeniy Arabadzhi % 8:38 PM Thursday, November 3, 2016 % % I have thr...

9年以上 前 | 4

| 採用済み

回答済み
NARXNET closed-loop vs open-loop
Quick answer: Openloop: Target and input signals are combined to form a vector input for designing the net by estimating ...

9年以上 前 | 0

回答済み
What neural network should I use?
help fitnet doc fitnet Hope this helps. *Thank you for formally accepting my answer* Greg

9年以上 前 | 1

回答済み
question regarding ntstool, pollution mortality example dataset
[X,T] = pollution_dataset; net = narxnet(1:2,1:2,10); [ Ic N ] = size(X) %[ 1 508] [ Oc N ] = size(T))%[ 1 508] x = cell2ma...

9年以上 前 | 0

| 採用済み

回答済み
correlation function lag selection
1. ID=0 is permissible; FD =0 is noncausal (equivalent to saying the output at time t is caused by the output at time t). 2....

9年以上 前 | 0

| 採用済み

さらに読み込む