Posts
Katie Minjoo Kim
Cancel

Applying early_stopping in LightGBM

Applying early_stopping in LightGBM When using LightGBM, attempting to pass early_stopping_rounds directly to the train() function may result in the following error: TypeError: train() got an ...

Resolving XGBoost Installation Issues on M1 Mac with Conda Virtual Environment !

If you’re working on an M1 Mac and trying to run XGBoost within a Conda virtual environment, you may encounter issues like libxgboost.dylib failing to load due to missing dependencies such as OpenM...

How to add a Conda environment as a kernel in Jupyter Notebook

Activate Environment conda activate (env_name) Install ipykernel pip instll ipykernel Add the Environment as a Jupyter Kernel python -m ipykernel install --user --name (env_name) --display-name (en...

QGIS 활용하여 shp 데이터 벡터 레이어 병합 및 잘라내기

국토교통부 V-WORLD 디지털트윈국토의 등고선 데이터 활용 서울 데이터는 N3L_F0010000_O N3L_F0010000_N 다음의 2가지 파일에 나누어져있기에 먼저 두가지 레이어 병합 진행 필요. 레이어 병합 이렇게 레이어가 병합됨. 병합된 레이어에서 서울만 잘라낼 것이기 때문에 그 위에 서울특별시 바운더리를 다음과 같이 띄움 ...

Melt and Unmelt(Pivot) in Pandas, Python

Reshaping data from long to wide or wide to long is a common task in data manipulation, and pandas provides several powerful methods to achieve this. Converting Long to Wide Long data is where mul...