728x90
정보가 범람하는 시대에서 추천시스템은 유저가 선호할 만한 컨텐츠를 발견하는데 중요한 역할을 한다. Amazon에서 구매하는 품목의 35%, 넷플릭스에서 사용자가 시청하는 컨텐츠의 75%는 추천시스템을 통해 이뤄진다. 1. Information Retrieval(IR) 정보 검색 - 정적 콘텐츠 기반 : 컨텐츠를 인덱싱(indexing) 하는데 시간을 투자 - 동적 정보 요구 : 쿼리들(Queries)이 "real-time"에서 존재 일반적인 접근으로 TF-IDF 가 있다. TF-IDF TF(Term Frequency) : 용어의 수 IDF(Inverse Document Frequency) : 문서 수의 반비례 문서 집합(corpus)에서 한 단어(term)가 얼마나 중요한지를 수치적으로 나타낸 가중치. ..
본 시리즈는 연세대학교 인공지능학과 대학원 이동하 교수님의 "Recommender Systems and Information Filtering(AAI5009)" 수업의 정리임을 밝힙니다. 1. Introduction to Recommender System 2. Non-personalized and Content-based Recommendation 3. Nearest Neighbor Collaborative Filtering 4. Matrix Factorization Collaborative Filtering 5. Factorization Machines 6. Top-K Recommendation 7. Deep Learning for Recommender Systems 8. Hybrid Recommend..
import torch def format_pytorch_version(version): return version.split(‘+’)[0] TORCH_version = torch.__version__ TORCH = format_pytorch_version(TORCH_version) def format_cuda_version(version): return ‘cu’ + version.replace(‘.’, ‘’) CUDA_version = torch.version.cuda CUDA = format_cuda_version(CUDA_version) !pip install torch-scatter -f https://pytorch-geometric.com/whl/torch-{TORCH}+{CUDA}.html !..
[참고링크] https://stackoverflow.com/questions/74189581/axesstack-object-is-not-callable-while-using-networkx-to-plot '_AxesStack' object is not callable while using networkx to plot Following one of online tutorials I found it difficult to run even a small piece of paragraph. Here is what I want to write into the graph: a Directed acyclic unweighted matrix into the graph, howe... stackoverflow.com ..
참고 링크 [1] https://stackoverflow.com/questions/54966977/cannot-install-python-secrets-package [2] https://pypi.org/project/python-secrets/ 해결 방법 pip install python-secrets
[참고 링크] https://anaconda.org/conda-forge/networkx-metis 설치 방법 conda install -c "conda-forge/label/cf202003" networkx-metis 또는 conda install -c conda-forge networkx-metis 참고로 나는 첫 번째 방법으로 설치했다. 두 번째 방법은 왜인진 모르지만 계속 안됐음... 저거 설치 못해서 LargeGNN 코드 못 돌려봤는데 다시 시도 해봐야겠다. 겪은 오류 Preparing transaction: done Verifying transaction: done Executing transaction: failed ERROR conda.core.link:_execute(502): An er..