반응형

캐글 23

CIBMTR - Equity in post-HCT Survival Predictions #4 GPU LightGBM Baseline [CV 681 LB 685)

This is an annotation of this kernel:https://www.kaggle.com/code/cdeotte/gpu-lightgbm-baseline-cv-681-lb-685 GPU LightGBM Baseline - [CV 681 LB 685]Explore and run machine learning code with Kaggle Notebooks | Using data from CIBMTR - Equity in post-HCT Survival Predictionswww.kaggle.comGPU LightGBM BaselineIn this notebook, we present a GPU LightGBM baseline. In this notebook, compared to my pr..

대회 2025.02.03

CIBMTR - Equity in post-HCT Survival Predictions #3 Understanding Survival Analysis - 2

Annotation of modeling & SHAP part of this kernel: Understanding Survival AnalysisExplore and run machine learning code with Kaggle Notebooks | Using data from CIBMTR - Equity in post-HCT Survival Predictionswww.kaggle.comXGBoost Model for SurvivalWe will now use an XGBoost model with Optuna to find the ideal hyperparameters. This model will be used to submit predictions.This XGBoost model imple..

대회 2025.02.01

CIBMTR - Equity in post-HCT Survival Predictions #2 Understanding Survival Analysis - 1

Annotation of this kernel: https://www.kaggle.com/code/benjenkins96/understanding-survival-analysis Understanding Survival AnalysisExplore and run machine learning code with Kaggle Notebooks | Using data from CIBMTR - Equity in post-HCT Survival Predictionswww.kaggle.comInitial EDA# Check the distribution of the target variablesplt.figure(figsize=(10, 5))sns.countplot(data=train, x='efs', palett..

대회 2025.02.01

CZII - CryoET Object Identification #4 Making synthetic data for Baseline YOLO11 Solution

This is an annotation of code that produces datasets for YOLO solution with additional data(synthetic data)Trained weights: https://www.kaggle.com/datasets/sersasj/czii-yolo-l-trained-with-synthetic-data/dataCode: https://www.kaggle.com/code/sersasj/czii-making-datasets-for-yolo-synthetic-data#CZII:-Creating-Datasets-for-YOLO-with-Additional-DataCZII making datasets for YOLO + synthetic dataMod..

대회 2025.01.28

[Kaggle Extra Study] 1. 지도 학습 vs. 비지도 학습

해당 포스트는 auto encoder를 학습하던 중 지도 학습과 비지도 학습에 대한 개념을 학습하기 위해 작성되었습니다. 지도 학습(Supervised Learning)지도 학습이란 머신러닝 모델이 데이터를 학습할 때, 학습하는 데이터가 레이블(label)되어 있는 경우를 말합니다.  지도 학습의 종류에는 크게 회귀(Regression)와 분류(classification)이 있습니다. 회귀는 훈련 데이터와 이에 매칭되는 타겟 변수의 값들(레이블)을 학습하여, 새로운 입력 데이터에 대한 출력 값을 예측하는 기법입니다.분류는 말그대로 훈련 데이터와 이에 매칭되는 레이블을 학습하여, 새로운 입력 데이터의 범주형(categorical) 클래스를 예측하는 기법입니다.비지도 학습(Unsupervised Learni..

캐글 보충 2024.10.22
반응형