LightGBM 빠개기

2020. 4. 13. 17:30머신 러닝 빠개기/Decision Tree

Paper

https://papers.nips.cc/paper/6907-lightgbm-a-highly-efficient-gradient-boosting-decision-tree.pdf

 

Overview

https://zereight.tistory.com/254

 

Ensemble(앙상블) 학습이란? (필사) feat. 랜덤포레스트,XGBoost, LightGBM

(파이썬 머신러닝 완벽가이드 발췌) - 개요 앙상블 학습을 통한 분류는 여러개의 분류기를 생성하고 그 예측을 결합함으로써 보다 정확한 최종예측을 도출하는 기법을 말합니다. 어려운 문제의 결론을 내기위해 여..

zereight.tistory.com

Code Structure

https://www.slideshare.net/slideshow/embed_code/key/3xARfWNMVBp2g0

 

boosting 기법 이해 (bagging vs boosting)

 

www.slideshare.net

Parper Review 1

https://greeksharifa.github.io/machine_learning/2019/12/09/Light-GBM/

 

Python, Machine & Deep Learning

Python, Machine Learning & Deep Learning 설명서

greeksharifa.github.io

Paper Review 2

https://soobarkbar.tistory.com/33

 

LightGBM: A Highly Efficient Gradient Boosting Decision Tree

논문 https://papers.nips.cc/paper/6907-lightgbm-a-highly-efficient-gradient-boosting-decision-tree.pdf Abstract GBDT (Gradient Boosting Decision Tree) 는 유명한 머신 러닝 알고리즘이며, XGBoost와 pGB..

soobarkbar.tistory.com

XGBoost, pGBRT, scikit-learn, R의 gbm4을 포함해 GBDT를 꽤 여러 종류로 구현해놨다. Scikit-learn과 R의 gbm은 사전 정렬 알고리즘을 구현했고 pGBRT는 히스토그램 기반 알고리즘을 구현했다. XGBoost는 사전 정렬 알고리즘과 히스토그램 기반 알고리즘 모두 지원한다. 논문5에서 볼 수 있듯이 XGBoost가 다른 것들을 능가한다. 그래서 본 논문 실험 시 XGBoost를 기준선으로 삼았다.

 

참조

https://ict-nroo.tistory.com/57

 

[Algorithm] 3-6. 정렬의 하한(lower bound)

부경대 IT융합응용공학과 권오흠 교수님의 영리한 프로그래밍을 위한 알고리즘 강좌와 '쉽게 배우는 알고리즘: 관계중심의 사고법 - 문병로'등을 통한 알고리즘 학습 강좌 링크 3-6. 정렬의 하한(lower bound) Com..

ict-nroo.tistory.com

https://new93helloworld.tistory.com/109

 

[알고리즘] Sort - 정렬의 Low Bound

Sort - 정렬의 Low Bound 앞서 여러가지 정렬을 살펴보았다. 그 결과 다음과 같은 질문을 할수 있을것 가다. 과연 O(nlogn)이라는 시간복잡도가 최선일까 미리 결론을 이야기하자면 O(nlogn)보다 더 나은 시간복..

new93helloworld.tistory.com

https://greatzzo.tistory.com/17

 

Bucket Sort

Bucket sort 소개 Ÿ Bucket Sort는 Counting Sort와 함께 가장 중요한 O(N) 정렬 기법이다. Ÿ Bucket Sort는 특히 값의 범위가 골고루 (uniformly distributed)되었을 때 유용하다. 예를 들어 0.0 ~ 1.0사이의..

greatzzo.tistory.com

 

'머신 러닝 빠개기 > Decision Tree' 카테고리의 다른 글

About GOSS/EFB in LightGBM  (0) 2020.04.14