프로그래머스 데브 코스/TIL

[6기] 프로그래머스 인공지능 데브코스 69일차 TIL

nicks 2023. 11. 8. 22:57

1108

제주 농산물 가격 예측 모델

데이터 학습 도전 코드

나머지는 슬랙에 팀과 공유
from lightgbm import LGBMRegressor

#model = LGBMRegressor(data_sample_strategy='goss', max_depth=5, num_leaves=20, min_data_in_leaf=100)
model = LGBMRegressor(data_sample_strategy='goss', random_state=0, max_depth=12, num_leaves=200)
model.fit(train_x, train_y,eval_metric="RMSE")

다음 차례부터 고민해 봐야 할 것들

  • 다른 회귀 모델 찾아보기
  • ridge 같은 간단한 것들부터 시작해 보기