로그인

검색

OBG
조회 수 4056 추천 수 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

 

 

?

  1. Programming 게시판 관련

    Date2014.11.01 CategoryTool/etc ByMoA Views22401
    read more
  2. 마이크로소프트가 공개한 무료 AI 코스들

    Date2023.11.28 CategoryDeeplearning ByOBG Views3882
    Read More
  3. 내 마음대로 선정한 머신러닝/딥러닝 학습 추천 서적

    Date2023.08.14 CategoryDeeplearning ByOBG Views4253
    Read More
  4. LSTM-AE를 이용한 시퀀스 데이터 이상 탐지

    Date2023.08.14 CategoryDeeplearning ByOBG Views3772
    Read More
  5. Top 3 most used Pytorch Ecosystem Libraries you should Know about

    Date2023.08.02 CategoryDeeplearning ByOBG Views4266
    Read More
  6. [번역]거대언어모델(LLM) 가이드

    Date2023.07.20 CategoryLLM ByOBG Views3347
    Read More
  7. PyTorch 딥러닝 챗봇

    Date2023.07.04 CategoryDeeplearning ByOBG Views3459
    Read More
  8. Debugging Node.js Memory Leaks: How to Detect, Solve or Avoid Them in Applications

    Date2023.07.04 Category서버 ByOBG Views3008
    Read More
  9. LLM 출력 속도 24배 높여주는 라이브러리 등장했다

    Date2023.06.30 CategoryLLM ByOBG Views3678
    Read More
  10. [한빛미디어] 머신러닝·딥러닝 도서 선택 가이드

    Date2023.06.11 CategoryDeeplearning ByOBG Views4048
    Read More
  11. Numpy의 axis 변경

    Date2023.06.09 CategoryPython ByOBG Views4440
    Read More
  12. Design a Basic Search Engine (Google or Bing) | System Design Interview Prep

    Date2023.05.27 Category서버 ByOBG Views3570
    Read More
  13. SSH-Tunneling을 통한 MySQL 서버 연결

    Date2023.04.21 Category서버 ByOBG Views3606
    Read More
  14. Reinforcement Learning for Dynamic Pricing Suggestion

    Date2023.04.01 CategoryDeeplearning ByOBG Views3530
    Read More
  15. 추천 시스템

    Date2023.03.30 CategoryDeeplearning ByOBG Views4500
    Read More
  16. 잡담) AWS에 서버 띄워 놓으니 벼라별 리퀘스트가 다 날아 오네요

    Date2023.03.11 CategoryTool/etc ByOBG Views4362
    Read More
  17. PM2를 활용한 Node.js 무중단 서비스하기

    Date2023.03.09 Category서버 ByOBG Views3021
    Read More
  18. LLaMA: INT8 edition

    Date2023.03.09 CategoryDeeplearning ByOBG Views4358
    Read More
  19. Caching In Node.js Applications

    Date2023.03.03 Category서버 ByOBG Views3450
    Read More
  20. 개발에 도움되는 사이트 (초보 개발자 꿀팁)

    Date2023.01.28 CategorySite ByOBG Views3719
    Read More
  21. FastAPI 톺아보기 - 부제: python 백엔드 봄은 온다

    Date2023.01.25 CategoryPython ByOBG Views3923
    Read More
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 ... 17 Next
/ 17