What is ELF
ELF stands for "Ensemble Learning Framework".
This piece of software, written in C++, is constructed being a stand-alone supervised machine learning framework. ELF is able to solve regression as well as classification problems. Our goal is doing this as accurate and as fast as possible. Recently, ensemble learning turns out to be very popular. The ELF supports ensembling in some ways.
The optimization target can be the RMSE, MAE, AUC or the classification error. The ELF supports multi-class classification problems and multi-domain classification. Multi-domain means that we have more than one label per example. The ELF has well implemented base learners. The ensemble functionality of the framework is realized with stacking, cascade learning and residual training. Stacking is a simple linear combination. ELF has the opportunity of cascade learning, which is an extention of the features with predictions from other models. Parameter selection can be done with cross-validation or bagging. Parameter selection means searching for good metaparameters in order to control overfitting of each individual model.
Features
- Framework
- Features and targets are stored as matrices (no sparse features possible!)
- The size of the feature matrix is limited to 232 elements
- Floating point precision can be single (4Byte) or double (8Byte)
- Training speed is a main design goal
- Accuracy is a main design goal
- Many learners use Intel's performance libraries: IPP and MKL (both come with Intel C++ compiler package)
- Regression
- All learners solve a regression problem
- Any classification problem is transferd to a regression problem!
- RMSE or MAE as optimization target
- Classification
- RMSE or AUC (2-class) or classification error as optimization target
- Multi-class classification (>2 classes)
- Multi-domain classification (>1 labels)
- Parameter selection - control overfitting
- k-fold Cross Validation
- Bagging (out-of-bag estimate)
- Cross Validation and Bagging are parallelized via OpenMP
- Base Learners
- Linear Regression
- Polynomial Regression
- K-Nearest Neighbors
- Neural Networks
- Gradient Boosted Decision Trees
- Kernel Ridge Regression
- Ensemble Learning
- Stacking (linear combination, lowering the RMSE)
- Training on Residuals
- Cascade Learning
- Bagging (from parameter selection)
- Prediction
- 3 Modes
- Retraining - Re-Train the model with best metaparameters on all avaliable data
- CrossFoldMean - Average prediction of k models from the k-fold cross validation
- Bagging - Average prediction of k models from the bagging setup
- All model parameters and combination weights are stored in binary files
- Ready-to-predict state. Making predictions of arbitrary new test features from the whole ensemble