回答済み
how to use op-elm toolbox
first import you excel files into space work using import dat; the save them in the same repertory of opELM as ''filename.txt'' ...

7年以上 前 | 0

回答済み
How to use new learning algorithm for training ANN other than predefined algorithms (like FFBP)
of course you can , this my codes for you: https://www.mathworks.com/matlabcentral/profile/authors/6602421-berghout-tarek?utf8=...

7年以上 前 | 0

回答済み
Accuracy doesnot change by changing number of layers and filters.
try toscale your data between (0 and 1) even thje targets and try a gain , because i faced those problems too.

7年以上 前 | 0

回答済み
How do I represent an empty data in a matrix?
if that data is very important for you , i propose this solution for you: before you train your model , take only the raws tha...

7年以上 前 | 0

| 採用済み

回答済み
trainNetwork - protect centain layers from changing
yes there is a pssibility take this codes and change the training lope, when you find ''for i=1: nember of layes '' change it to...

7年以上 前 | 0

回答済み
It's possible to export a neural network as a function to use in excel?
i didn' t done it before , but i know that it is possible ; you have weights matrices you can put each one of them in tables and...

7年以上 前 | 0

回答済み
output of neural network
if your network traind for regression : the outputs will be a scaler value correspending to the inputs. if your network traind ...

7年以上 前 | 0

回答済み
How create NN ???
there are 2 hidden layers . but you should know that there is a difference between the training method and the type of the netw...

7年以上 前 | 0

| 採用済み

回答済み
ELM Classifier does not produce a list of predicted labels
you can just add the name of the output to the function : Y for training output, TY for testing output like this : [Y,TY,Traini...

7年以上 前 | 1

回答済み
How to tune the regularization parameter in extreme learning machine?
if you want to get beter trainig accuracy in basic SLFN traind by ELM you should do this: 1- invrease the nuber of neurons one ...

7年以上 前 | 0

| 採用済み

回答済み
how to find class label in testing
just add "TY" to your function [TY,TrainingTime, TestingTime, TrainingAccuracy, TestingAccuracy]=.....;

7年以上 前 | 0

回答済み
ELM Classifier does not produce a list of predicted labels
just add "TY" to your function [TY,TrainingTime, TestingTime, TrainingAccuracy, TestingAccuracy]=.....;

7年以上 前 | 0

回答済み
code for back propagation
HI, try this : https://www.mathworks.com/matlabcentral/fileexchange/69947-back-propagation-algorithm-for-training-an-mlp?s_tid=p...

7年以上 前 | 0

回答済み
what is back-propagation neural network. how to solve using matlab
read this code you will understand : https://www.mathworks.com/matlabcentral/fileexchange/69947-back-propagation-algorithm-for-t...

7年以上 前 | 0

回答済み
how to adjust derivatives of backpropagation according to custom error function
try this code : https://www.mathworks.com/matlabcentral/fileexchange/69947-back-propagation-algorithm-for-training-an-mlp?s_tid=...

7年以上 前 | 1

回答済み
Manually Training and Testing Backpropagation Neural Network with different inputs
you can try with this code i its more simplified: https://www.mathworks.com/matlabcentral/fileexchange/69947-back-propagation-al...

7年以上 前 | 1

回答済み
what types of Network and training are suitable for returning a more precise value?
you can use deep belif Nets to train your nets : https://www.mathworks.com/matlabcentral/fileexchange/69925-deep-belief-nets-bas...

7年以上 前 | 0

回答済み
How can two neural networks be compared for regression based on training and testing results ?
for regression the lower error the greater accuracy is the network gets . you can also use a T test for you output analysis to ...

7年以上 前 | 0

回答済み
How to select the number of samples to train a Machine Learning algorithm?
u can use deep belif networks ; they are the best for feature sellection and mapping; and train you network by driven chunks of ...

7年以上 前 | 0

回答済み
Machine learning and data normalization - how data should(?) be normalized.
1-you can normalize the eparately or together but the best way is to normalize the inside the trainig function ; if you add the ...

7年以上 前 | 0

回答済み
how to give matrix as input in matlab to program.how to predict disease using Extreme learning machine.
it is very simple , contact me if you r intrested , i did that project to predect my son healt using my own code https://www.ma...

7年以上 前 | 0

回答済み
I trying to do elm analysis in MATLAB, but my code is not running properly. I want to use extreme learning machine and want to see regression values for both test and train data. Please help me.
you can use this function it works faster https://www.mathworks.com/matlabcentral/fileexchange/66013-very-very-simple-extreme-...

7年以上 前 | 0

回答済み
what is regularization coefiicient
the regulazation parameter is the user parameter in the moore peneroose psedoinverse of matrix mathed which is presented by C f...

7年以上 前 | 0

| 採用済み

回答済み
how to classify the data using extreme learning machine
if you choose your ELM network to be in regression type, that is in data set you are searching for a function that takes each in...

7年以上 前 | 0

回答済み
how to classify the data using extreme learning machine
I usually use the standard code version of ELM created bay G.-B. Huang, you can find at this link http://www.ntu.edu.sg/home/egb...

7年以上 前 | 1

回答済み
Extreme learning machine forecasting/prediction
you can use ELM for regression ; use a training set to train the network ;then if you want to predict a value for such instance ...

8年以上 前 | 0

質問


hypothesis test in machine learning
a have a learning algorithm, and i made an experiment to determine its accuracy , by comparing it with others;SVR,Gaussian proce...

8年以上 前 | 0 件の回答 | 0

0

回答

回答済み
how to classify the data using extreme learning machine
in the training and testing files , you must reorder your observations like this: observation=target,attribute 01,attribute 2,....

8年以上 前 | 0