중간에 추가된 일
Feature Importance로 모델의 변수 중요도를 파악할 수 있다는 걸 알게 되었다. 이걸 이용해 전처리를 진행하여 모델 성능을 올려 볼 계획이다.
사용 예제
# Feature Importance Plot
import matplotlib.pyplot as plt
feature_importances = model.get_feature_importance()
feature_names = X_train.columns
# Feature importance 시각화
plt.figure(figsize=(10, 6))
plt.barh(feature_names, feature_importances, color='skyblue')
plt.xlabel('Importance')
plt.ylabel('Feature')
plt.title('Feature Importance')
plt.show()
그외에.. 딱히 없다 프로젝트 기간이다보니 새롭게 배우기보단 반복 복습을 하게된다.
그보다 뒤늦은 연장(?)근무를 하는중에 윤석열 대통령이 비상계엄을 선언했다..;; 이게 뭔일이래..;
프로젝트 진행중----.