[Side Project After Work] Big Data Analysis Certification Practical Exam (Type 1, 2, 3)
We guide non-majors and beginners to quickly obtain the Big Data Analysis Certification (Practical Exam)! Keep the theory light and the practice solidโfocusing on core points that are guaranteed to appear on the exam through past questions, without the need for complex background knowledge.
5,457 learners
Level Beginner
Course period 12 months

[Task 2] Introducing the lightGBM model. (Classification/Regression)
Task 2: What model are you planning to prepare?
1. Random Forest Classification/Regression
2. I recommend lightGBM classification/regression.
lightGBM is
This is a popular boosting model along with XGBoost.
Training and prediction speed are faster than XGBoost.
At the time of video production, lightGBM was not supported, but it is now available even in testing environments.
XGBoost runs well, but sometimes warnings occur. I recommend preparing lightGBM instead of XGBoost.
####### ๋ถ๋ฅ ####### import lightgbm as lgb model = lgb.LGBMClassifier() model.fit(X_train, y_train) y_pred = model.predict(X_test) # y_pred = model.predict_proba(X_test) #ํ๊ฐ๊ธฐ์ค roc-auc์ผ ๋ ####### ํ๊ท ####### import lightgbm as lgb model = lgb.LGBMRegressor() model.fit(X_train, y_train) y_pred = model.predict(X_test) # ํ์ดํผํ๋ผ๋ฏธํฐ ํ๋์ xgboost(์์
ํ2 ๋ชจ์๊ณ ์ฌ3 ๊ฐ์)๊ณผ ๋์ผํ๊ฒ ์ฌ์ฉํ๋ฉด ๋ฉ๋๋ค. # ์: max_depth=5, n_estimators=600, learning_rate=0.01ย
ย




