전체 글
-
캐글 커널 커리큘럼<Kaggle> 2022. 5. 31. 20:41
Binary classification : Tabular data 1st level. Titanic: Machine Learning from Disaster 타이타닉 튜토리얼 1 - Exploratory data analysis, visualization, machine learning EDA To Prediction(DieTanic) Titanic Top 4% with ensemble modeling Introduction to Ensembling/Stacking in Python 2nd level. Porto Seguro’s Safe Driver Prediction 총정리 : https://9566.tistory.com/category/%3CKaggle%3E/%5BPorto%20seguro-safe%..
-
-
-
-
5/25<Kaggle>/[Mercari Price Suggestion] 2022. 5. 25. 21:01
# dict['key']가 가능 title_to_index = dict(zip(data['title'], data.index)) # 영화 제목 Father of the Bride Part II의 인덱스를 리턴 idx = title_to_index['Father of the Bride Part II'] print(idx) array -> list변환 for 정렬 sim_scores = list(enumerate(cosine_sim[idx])) # 유사도에 따라 영화들을 정렬한다. sim_scores = sorted(sim_scores, key=lambda x: x[1], reverse=True)
-