로그인

검색

OBG
조회 수 2939 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 게시글 수정 내역 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 게시글 수정 내역 댓글로 가기 인쇄

[ 요약 ]

 

(1) 10년 ~ 15년 전에는 Apriori 알고리즘. 대표적인 연관 상품 추천 알고리즘.

-> https://ratsgo.github.io/machine%20learning/2017/04/08/apriori/

 

(2) 5~10년 전에는 Apriori 다음으로 Collaboration Filtering

-> https://www.slideshare.net/MrChrisJohnson/collaborative-filtering-with-spark

 

(3) 4 ~7년 전에는 FPGroth . Apriori 의 BigData  버전

-> http://blog.naver.com/PostView.nhn?blogId=sindong14&logNo=220661064114&parentCategoryNo=&categoryNo=48&viewDate=&isShowPopularPosts=true&from=search

 

(3.5) 4 ~ 5년 전에는 Collaboration Filltering + Deep Learning  혹은 유사 Approach

-> https://www.whydsp.org/291

 

(4) 3~5년 전에는 Matrix Factorization

-> http://sanghyukchun.github.io/73/

 

(5) 2~4년 전에는 Item2Vec + CF

-> [Microsoft 논문] https://arxiv.org/vc/arxiv/papers/1603/1603.04259v2.pdf

-> [관련 블로그] https://brunch.co.kr/@goodvc78/16

 

(6) 2~3년 전에는 You-tube Recommendation 스타일 Deep Learning Approach

-> [논문] https://static.googleusercontent.com/media/research.google.com/ko//pubs/archive/45530.pdf

-> [논문 요약] http://keunwoochoi.blogspot.com/2016/09/deep-neural-networks-for-youtube.html

-> [슬라이드 쉐어] https://pt.slideshare.net/lekaha/deep-neural-network-for-youtube-recommendations

-> 유튜브 알고리즘에 대한 다양한 인문학적 고찰 https://www.bloter.net/archives/301890

 

(7) 1~3년 전부터 Wide & Deep Model

-> [논문] https://arxiv.org/abs/1606.07792

-> [조대협님이 정리한 코드가 있는 블로그] https://bcho.tistory.com/tag/wide%20and%20deep%20model

 

(8) 1~2년 전부터 개인화 추천이 뜨면서 다시 각광 받는 Factorization Machine. (논문은 사실 좀 오래 되었음.)
-> [HOL] https://cloud.hosting.kr/techblog_180709_movie-recommender-with-factorization-machines/

 

(8.5) Matrix Factorization 과 Factorization Machine 과의 차이점.

https://stats.stackexchange.com/questions/108901/difference-between-factorization-machines-and-matrix-factorization

논문 참고 : https://www.csie.ntu.edu.tw/~b97053/paper/Rendle2010FM.pdf

 

(9) 최근. 개인화 추천. ( 2017 re-invent By Amazon )

-> [슬라이드쉐어] https://fr.slideshare.net/AmazonWebServices/building-content-recommendation-systems-using-apache-mxnet-and-gluon-mcl402-reinvent-2017

 

(10) 최근. 개인화 추천. Hierarchical RNN ( 2018 re-invent By Amazon )

-> [구현체] 저자의 구현체 공개버전 : https://github.com/mquad/hgru4rec

 

(11) 최근. 개인화 Re-Ranking. (개인화 Reinforcement Learning Re-Ranking By 알리바바)

-> [논문] https://arxiv.org/pdf/1803.00710.pdf

 

(12) Deep Learning 기반 최신 추천시스템 동향 관련 Survey 논문

-> https://arxiv.org/pdf/1707.07435.pdf

 

자세한 내용은 아래 블로그를 참고한다.

http://hoondongkim.blogspot.com/2019/03/recommendation-trend.html

 

 

?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
공지 Tool/etc Programming 게시판 관련 2 MoA 2014.11.01 15452
38 STL/Boost boost::shared_ptr 소개 Naya 2012.08.02 2437
37 API/MFC DoModal Dialog 기초 MoA 2013.07.28 2437
36 LLM Getting Started with Sentiment Analysis using Python OBG 2024.04.11 2418
35 LLM Real-Time Stock News Sentiment Prediction with Python OBG 2024.04.11 2412
34 Tool/etc "Node.js를 떠나며" - express를 만든 TJ의 글 OBG 2022.06.23 2398
33 Deeplearning 시계열 데이터 예측 모델 OBG 2022.11.08 2385
32 LLM [12월 1주] 떠오르는 '미스트랄 7B'...'라마 2' 이어 한국어 모델 세대교체 주도 OBG 2024.03.05 2323
31 Deeplearning [ifkakao] 추천 시스템: 맥락과 취향 사이 줄타 OBG 2024.01.10 2298
30 Web [Javascript] 비동기, Promise, async, await 확실하게 이해하기 OBG 2022.05.27 2295
29 Graphic ASCII 3D 렌더러 만들기 OBG 2024.06.03 2276
28 Tool/etc Synology: Top Best Apps For Docker OBG 2024.07.01 2268
27 LLM Anthropic, LLM의 내부를 이해하는데 있어 상당한 진전을 보임 OBG 2024.06.03 2256
26 Web How to send dynamic charts with a Slack bot OBG 2022.05.31 2255
25 LLM [번역]거대언어모델(LLM) 가이드 OBG 2023.07.20 2254
24 서버 Golang Tutorial for Node.js Developers, Part I.: Getting started OBG 2022.06.16 2251
23 Web defer, async 스크립트 OBG 2023.01.10 2247
22 Deeplearning LSTM-AE를 이용한 시퀀스 데이터 이상 탐지 OBG 2023.08.14 2240
21 서버 PM2를 활용한 Node.js 무중단 서비스하기 OBG 2023.03.09 2217
20 서버 Design a Basic Search Engine (Google or Bing) | System Design Interview Prep OBG 2023.05.27 2206
19 서버 멀티-플레이어 게임 서버와 레이턴시 보상 테크닉 OBG 2024.01.16 2202
Board Pagination Prev 1 ... 6 7 8 9 10 11 12 13 14 15 Next
/ 15