<aside> 💡 프로젝트를 위해 공부했던 GraphSAGE 에 대해 정리하고자 한다. 이번 포스팅은 'Inductive Representation Learning on Large Graphs' 논문의 내용을 바탕으로 참고 자료와 함께 정리한 내용이다.
</aside>
unseen node를 일반화하는 embedding function을 학습하기 위해 node feature를 활용
nodes embedding vector를 학습하는 기존과 달리, **nodes의 local neighborhood에서 feature를 집계하는 ‘aggregator function set’을 학습
각 aggregator function은 주어진 node에서 떨어진, 다른 hope / depth의 정보를 집계
이를 통해 각 nodes의 이웃의 topological structure 뿐만아니라, 이웃의 node feature distribution 학습
(e.g structural features that are present in all graphs(node degree, node rank, etc.), text attributes, even graphs without node features)
[ 그림 2] Visual illustration of the GraphSAGE sample and aggregate approach