| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | |||||
| 3 | 4 | 5 | 6 | 7 | 8 | 9 |
| 10 | 11 | 12 | 13 | 14 | 15 | 16 |
| 17 | 18 | 19 | 20 | 21 | 22 | 23 |
| 24 | 25 | 26 | 27 | 28 | 29 | 30 |
| 31 |
- 코너 검출
- feature descriptor
- corner detection
- Random Forest
- spaceship titanic
- Image Processing
- blob detection
- 캐글
- 컴퓨터비전
- 이미지 처리
- data science
- 인공지능
- harris corner detection
- feature matching
- Computer Vision
- 데이터사이언스
- Machine Learning
- decision tree
- 머신러닝
- XGBoost
- kaggle titanic
- random forest tree
- 인공지능대회
- kaggle
- 가우시안 필터
- Ai
- ai competition
- 해리스 코너
- difference of gaussian
- classification
- Today
- Total
목록kaggle (3)
이것저것
Backpack Prediction ChallengeGoal: Predict the price of backpacks given various attributes. Evaluated by RMSE metric. $$ RMSE=(\frac{1}{N} \sum^N_{i=1} (y_i-\hat{y_i})^2)^\frac{1}{2} $$ Refer to this challenge here: https://www.kaggle.com/competitions/playground-series-s5e2EDAViewing the first 5 rows of dataset, full_data=pd.read_csv("/kaggle/input/playground-series-s5e2/train.csv")full_data.hea..
Spaceship Titanic The goal of the competition is to predict which passengers aboard the Spaceship Titanic were transported to an alternate dimension after the ship collided with a spacetime anomaly near Alpha Centauri. By analyzing records recovered from the spaceship's damaged computer system, assist rescue crews in locating and saving the lost passengers. DatasetOpening up train.csv data file...
Datasetimport numpy as np # linear algebraimport pandas as pd # data processing, CSV file I/O (e.g. pd.read_csv)import osfor dirname, _, filenames in os.walk('/kaggle/input'): for filename in filenames: print(os.path.join(dirname, filename)) Kaggle itself has a directory /kaggle/input and the train and test dataset are included in this folder. Now opening up the train.csv filetrain_dat..