RS-KR / GNN-RS-Beginner

47 stars 3 forks source link

Transductive, Inductive #16

Open ZiminPark opened 2 years ago

ZiminPark commented 2 years ago

GNN에서 Transductive, Inductive하다가 무슨 뜻인지 이야기해보자

ZiminPark commented 2 years ago

https://komputervision.wordpress.com/2020/03/24/inductive-learning-vs-transductive-learning/

haconedu commented 2 years ago

새로운 데이터가 들어왔을때 만들어진 모델로 inference 가능 = inductive 만들어진 모델로는 불가능하고, 재학습 해야만 가능 = transductive

Namkyun-AUX commented 2 years ago

가장 큰 차이점은 unseen데이터에 대해 학습을 할때 transductive한 모델은 처음부터 재학습해야하는 문제점이 있는데, inductive한 모델(graphsage)은 처음부터 재학습할 필요없이 subsampling하여 학습시키기 때문에 학습 효율성이 더 높다.

ZiminPark commented 2 years ago

Inductive Learning

Transductive Learning

tdns03 commented 2 years ago

Transductive : 지금 있는 데이터 내에서 현재 데이터에 Specific한 Problem을 풀기 위한 방법

Inductive : 지금 있는 데이터를 활용해 General한 Problem을 풀기 위한 방법

근데 보면 볼수록 좀 헷갈리네요..

image 출처 : https://thejb.ai/transduction/

https://komputervision.wordpress.com/2020/03/24/inductive-learning-vs-transductive-learning/ https://redstarhong.tistory.com/88 https://en.wikipedia.org/wiki/Transduction_(machine_learning)

choco9966 commented 2 years ago

Inductive Learning

Transductive Learning