All Projects → Y-oHr-N → OptGBM

Y-oHr-N / OptGBM

Licence: MIT license
Optuna + LightGBM = OptGBM

Programming Languages

python
139335 projects - #7 most used programming language
Dockerfile
14818 projects

Projects that are alternatives of or similar to OptGBM

sdsj-automl
Sberbank Data Science Jorney Auto-ML competition
Stars: ✭ 28 (+3.7%)
Mutual labels:  automl
AutoTabular
Automatic machine learning for tabular data. ⚡🔥⚡
Stars: ✭ 51 (+88.89%)
Mutual labels:  automl
clara-train-examples
Example notebooks demonstrating how to use Clara Train to build Medical Imaging Deep Learning models
Stars: ✭ 80 (+196.3%)
Mutual labels:  automl
HyperKeras
An AutoDL tool for Neural Architecture Search and Hyperparameter Optimization on Tensorflow and Keras
Stars: ✭ 29 (+7.41%)
Mutual labels:  automl
benderopt
Black-box optimization library
Stars: ✭ 84 (+211.11%)
Mutual labels:  automl
tsfuse
Python package for automatically constructing features from multiple time series
Stars: ✭ 33 (+22.22%)
Mutual labels:  automl
Hypernets
A General Automated Machine Learning framework to simplify the development of End-to-end AutoML toolkits in specific domains.
Stars: ✭ 221 (+718.52%)
Mutual labels:  automl
Deep-learning-And-Paper
【仅作为交流学习使用】机器智能--相关书目及经典论文包括AutoML、情感分类、语音识别、声纹识别、语音合成实验代码等
Stars: ✭ 62 (+129.63%)
Mutual labels:  automl
AutoPrognosis
Codebase for "AutoPrognosis: Automated Clinical Prognostic Modeling via Bayesian Optimization", ICML 2018.
Stars: ✭ 47 (+74.07%)
Mutual labels:  automl
pymfe
Python Meta-Feature Extractor package.
Stars: ✭ 89 (+229.63%)
Mutual labels:  automl
EvolutionaryForest
An open source python library for automated feature engineering based on Genetic Programming
Stars: ✭ 56 (+107.41%)
Mutual labels:  automl
simon-frontend
💹 SIMON is powerful, flexible, open-source and easy to use machine learning knowledge discovery platform 💻
Stars: ✭ 114 (+322.22%)
Mutual labels:  automl
Awesome-Tensorflow2
基于Tensorflow2开发的优秀扩展包及项目
Stars: ✭ 45 (+66.67%)
Mutual labels:  automl
foreshadow
An automatic machine learning system
Stars: ✭ 29 (+7.41%)
Mutual labels:  automl
BossNAS
(ICCV 2021) BossNAS: Exploring Hybrid CNN-transformers with Block-wisely Self-supervised Neural Architecture Search
Stars: ✭ 125 (+362.96%)
Mutual labels:  automl
AutoTS
Automated Time Series Forecasting
Stars: ✭ 665 (+2362.96%)
Mutual labels:  automl
Neural-Architecture-Search
This repo is about NAS
Stars: ✭ 26 (-3.7%)
Mutual labels:  automl
human-in-the-loop-machine-learning-tool-tornado
Tornado is a human-in-the-loop machine learning framework that helps you exploit your unlabelled data to train models through a simple and easy to use web interface.
Stars: ✭ 37 (+37.04%)
Mutual labels:  automl
deep autoviml
Build tensorflow keras model pipelines in a single line of code. Now with mlflow tracking. Created by Ram Seshadri. Collaborators welcome. Permission granted upon request.
Stars: ✭ 98 (+262.96%)
Mutual labels:  automl
maggy
Distribution transparent Machine Learning experiments on Apache Spark
Stars: ✭ 83 (+207.41%)
Mutual labels:  automl

OptGBM

Python package codecov PyPI PyPI - License Binder

OptGBM (= Optuna + LightGBM) provides a scikit-learn compatible estimator that tunes hyperparameters in LightGBM with Optuna.

Examples

import optgbm as lgb
from sklearn.datasets import load_boston

reg = lgb.LGBMRegressor(random_state=0)
X, y = load_boston(return_X_y=True)

reg.fit(X, y)

y_pred = reg.predict(X, y)

By default, the following hyperparameters will be searched.

  • bagging_fraction
  • bagging_freq
  • feature_fractrion
  • lambda_l1
  • lambda_l2
  • max_depth
  • min_data_in_leaf
  • num_leaves

Installation

pip install optgbm

Testing

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