Answered
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...

5 years ago | 1

Answered
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 ...

5 years ago | 0

| accepted

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

5 years ago | 0

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

5 years ago | 0

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

5 years ago | 0

Answered
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...

5 years ago | 0

Answered
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=...

5 years ago | 1

Answered
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...

5 years ago | 1

Answered
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...

5 years ago | 0

Answered
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 ...

5 years ago | 0

Answered
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 ...

5 years ago | 0

Answered
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 ...

5 years ago | 0

Answered
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...

5 years ago | 0

Answered
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-...

5 years ago | 0

Answered
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...

5 years ago | 0

| accepted

Answered
MATLAB error OS-ELM model
were is the code os-elm

5 years ago | 0

Answered
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...

5 years ago | 0

Answered
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...

5 years ago | 1

Answered
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 ...

6 years ago | 0

Question


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...

6 years ago | 0 answers | 0

0

answers

Answered
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,....

6 years ago | 0