已回答
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'' ...

6 years 前 | 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=...

6 years 前 | 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.

6 years 前 | 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...

6 years 前 | 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...

6 years 前 | 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...

6 years 前 | 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 ...

6 years 前 | 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...

6 years 前 | 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...

6 years 前 | 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 ...

6 years 前 | 0

| 已接受

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

6 years 前 | 0

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

6 years 前 | 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...

6 years 前 | 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...

6 years 前 | 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=...

6 years 前 | 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...

6 years 前 | 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...

6 years 前 | 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 ...

6 years 前 | 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 ...

6 years 前 | 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 ...

6 years 前 | 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...

6 years 前 | 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-...

6 years 前 | 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...

6 years 前 | 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...

6 years 前 | 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...

6 years 前 | 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 ...

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

7 years 前 | 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,....

7 years 前 | 0