๊ฐ•์˜

๋ฉ˜ํ† ๋ง

๋กœ๋“œ๋งต

BEST
Data Science

/

Certificate (Data Science)

[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.

(4.9) 804 reviews

5,457 learners

Level Beginner

Course period 12 months

  • roadmap
Engineer Big Data Analysis
Engineer Big Data Analysis
Big Data
Big Data
Python
Python
Pandas
Pandas
Machine Learning(ML)
Machine Learning(ML)
Engineer Big Data Analysis
Engineer Big Data Analysis
Big Data
Big Data
Python
Python
Pandas
Pandas
Machine Learning(ML)
Machine Learning(ML)

[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

ย 

ย 

Comment