All Projects → RGF-team → Rgf

RGF-team / Rgf

Home repository for the Regularized Greedy Forest (RGF) library. It includes original implementation from the paper and multithreaded one written in C++, along with various language-specific wrappers.

Projects that are alternatives of or similar to Rgf

Lightgbm
A fast, distributed, high performance gradient boosting (GBT, GBDT, GBRT, GBM or MART) framework based on decision tree algorithms, used for ranking, classification and many other machine learning tasks.
Stars: ✭ 13,293 (+3798.24%)
Mutual labels:  kaggle, decision-trees
Ml Dl Scripts
The repository provides usefull python scripts for ML and data analysis
Stars: ✭ 119 (-65.1%)
Mutual labels:  kaggle, ml
Machinejs
[UNMAINTAINED] Automated machine learning- just give it a data file! Check out the production-ready version of this project at ClimbsRocks/auto_ml
Stars: ✭ 412 (+20.82%)
Mutual labels:  kaggle, ml
kaggle
Kaggle solutions
Stars: ✭ 17 (-95.01%)
Mutual labels:  ml, kaggle
Nyaggle
Code for Kaggle and Offline Competitions
Stars: ✭ 209 (-38.71%)
Mutual labels:  kaggle, ml
Chefboost
A Lightweight Decision Tree Framework supporting regular algorithms: ID3, C4,5, CART, CHAID and Regression Trees; some advanced techniques: Gradient Boosting (GBDT, GBRT, GBM), Random Forest and Adaboost w/categorical features support for Python
Stars: ✭ 176 (-48.39%)
Mutual labels:  kaggle, decision-trees
Machinelearningcourse
A collection of notebooks of my Machine Learning class written in python 3
Stars: ✭ 35 (-89.74%)
Mutual labels:  kaggle, ml
Machine Learning
从零基础开始机器学习之旅
Stars: ✭ 209 (-38.71%)
Mutual labels:  kaggle, ml
Bike-Sharing-Demand-Kaggle
Top 5th percentile solution to the Kaggle knowledge problem - Bike Sharing Demand
Stars: ✭ 33 (-90.32%)
Mutual labels:  kaggle, decision-trees
yggdrasil-decision-forests
A collection of state-of-the-art algorithms for the training, serving and interpretation of Decision Forest models.
Stars: ✭ 156 (-54.25%)
Mutual labels:  ml, decision-trees
Argus Freesound
Kaggle | 1st place solution for Freesound Audio Tagging 2019
Stars: ✭ 265 (-22.29%)
Mutual labels:  kaggle
Pytorch Kaggle Starter
Pytorch starter kit for Kaggle competitions
Stars: ✭ 268 (-21.41%)
Mutual labels:  kaggle
Sharplearning
Machine learning for C# .Net
Stars: ✭ 294 (-13.78%)
Mutual labels:  decision-trees
Clai
Command Line Artificial Intelligence or CLAI is an open-sourced project from IBM Research aimed to bring the power of AI to the command line interface.
Stars: ✭ 320 (-6.16%)
Mutual labels:  ml
Nimbusml
Python machine learning package providing simple interoperability between ML.NET and scikit-learn components.
Stars: ✭ 265 (-22.29%)
Mutual labels:  ml
Open Solution Mapping Challenge
Open solution to the Mapping Challenge 🌎
Stars: ✭ 291 (-14.66%)
Mutual labels:  kaggle
Awesome Mlops
😎 A curated list of awesome MLOps tools
Stars: ✭ 258 (-24.34%)
Mutual labels:  ml
Python
Python bindings for BigML.io
Stars: ✭ 264 (-22.58%)
Mutual labels:  ml
Hub
Dataset format for AI. Build, manage, & visualize datasets for deep learning. Stream data real-time to PyTorch/TensorFlow & version-control it. https://activeloop.ai
Stars: ✭ 4,003 (+1073.9%)
Mutual labels:  ml
Tgs Salt Identification Challenge 2018 4th place solution
Kaggle TGS Salt Identification Challenge 2018 4th place code
Stars: ✭ 334 (-2.05%)
Mutual labels:  kaggle

Python and R tests DOI arXiv.org Python Versions PyPI Version CRAN Version

Regularized Greedy Forest

Regularized Greedy Forest (RGF) is a tree ensemble machine learning method described in this paper. RGF can deliver better results than gradient boosted decision trees (GBDT) on a number of datasets and it has been used to win a few Kaggle competitions. Unlike the traditional boosted decision tree approach, RGF works directly with the underlying forest structure. RGF integrates two ideas: one is to include tree-structured regularization into the learning formulation; and the other is to employ the fully-corrective regularized greedy algorithm.

This repository contains the following implementations of the RGF algorithm:

  • RGF: original implementation from the paper;
  • FastRGF: multi-core implementation with some simplifications;
  • rgf_python: wrapper of both RGF and FastRGF implementations for Python;
  • R package: wrapper of rgf_python for R.

You may want to get interesting information about RGF from the posts collected in Awesome RGF.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].