이 포스트는 CS224W : Machine Learning with Graphs 강의를 기반으로 작성되었습니다.
Graph란?
- entity들을 관계(relations) 및 상호작용(interactions)과 함께 묘사/분석하기 위한 general language
(entity들을 isolated datapoints로 보기보다는, entity 사이의 networks나 relation의 측면으로 보는 것) - ex) computer networks, 질병 감염 경로, 논문 인용 네트워크, knowledge graph, code graphs, 3D shape 등
- 2가지 종류
- networks (natural graphs)
: underlying domains가 자연스럽게 그래프로 표현
- ex) social networks, communications, transactions (phone call, financial transactions) - graphs (as a representation)
: relational 구조를 갖고 있는 것을 표현
- ex) information, knowledge, software
- networks (natural graphs)
Graph: new frontier of Deep Learning
- 복잡한 도메인은 relational graph로 표현할 수 있는 풍부한 relational structure를 갖고 있다.
- 명시적으로 relationships을 모델링하여 더욱 정확히 예측할 수 있다.
- 최신 deep learning toolbox는 simple data types에 특화되어 있다.
- ex1) sequence : linear structure 지님 - text, speech에서 사용
- ex2) grid : 이미지를 resize해서 fixed size grids로 표현 가능
- 하지만 graph & networks는 더 복잡한 data이다.
: arbitrary size & complex topological structure- grid나 text 등이 갖고 있는 공간적 위치(spatial locality)가 없음
: text에서는 좌/우 알고 grid에서는 위/아래 알지만 graph에서는 그런 reference point가 없음 - 고정된 node 순서가 없음
- dynamic하고 multimodal한 features 가짐
- grid나 text 등이 갖고 있는 공간적 위치(spatial locality)가 없음
- graph가 neural network를 광범위하게 적용시키기 위한 딥러닝의 개척지
: input으로 graph 넣어서 여러 예측을 end-to-end로 할 수 있는 neural network architecture 에 대해 알아볼 것
Representation Learning
- 이전 머신러닝 접근법은 feature engineering에 많은 노력이 들어간다.
- representation learning
- graph에서 자동으로 feature들을 추출하고 학습
- feature engineering 단계는 제거
- 자동으로 graph에 대한 좋은 representation을 학습 → 다른 머신러닝 알고리즘 task (downstream task) 에 사용 가능
- 목표
: node들을 d차원 실수 벡터로 표현해주는 함수 학습하기
→ node들을 맵핑해서 d차원 임베딩 벡터 생성
→ 네트워크 내 유사한 node들이 임베딩 공간에서 가까이 임베딩될 수 있도록 함
반응형
'DATA SCIENCE > DEEP LEARNING' 카테고리의 다른 글
[CS224W] 2-1. Node-level Prediction (0) | 2022.07.26 |
---|---|
[CS224W] 1-3. Choice of Graph Representation (0) | 2022.07.24 |
[CS224W] 1-2. Applications of Graph ML (0) | 2022.07.24 |
[Deep Learning] 기울기 소실과 폭주 (Gradient Vanishing & Exploding) 방지하기 (0) | 2020.03.29 |
[Deep Learning] 딥러닝 기초 지식 (활성화 함수(activation function), 옵티마이저(optimizer), 역전파(back propagation) 등) (0) | 2020.03.28 |