ELM-C-- icon indicating copy to clipboard operation
ELM-C-- copied to clipboard

Extreme Learning Machine - C++ library

Results 8 ELM-C-- issues
Sort by recently updated
recently updated
newest added

Hello friend In the example you use this function [trn vld] = cross_valid_ids( size(X,2), 10, [0.9 0.1 0] ); but I can't use it in Matlab, can you help me...

Current implementation should be called "Linear ELM" since only linear relationships are used in the learning process. An option or even a code branch could implement kernelized version of ELM...

The code allows to include the training/prediction functions easily in any C++ project. Currently the only interface to this library is implemented for MATLAB. It would be nice to develop...

This is embarrassing.

Current code implements sigmoid activation function. It could be nice to let the user select which function to select and/or allow easily use his own function.

Occasionally on relatively small datasets the program crashes. This may be due to the matrix which _may_ be get singular, hence no solution is found. Some checking and/or validation is...

Current implementation works nice and as expected if class labels are natural numbers, and start from 1 up to maximal value. Implementation is not very nice if labels are say:...