728x90 반응형 GNN20 [CS224w] Colab 2 - PyG, OGB, GNN Device 런타임 > 런타임 유형 변경 > 하드웨어 가속기 > GPU로 설정하고 저장 Setup import torch import os print("PyTorch has version {}".format(torch.__version__)) PyTorch has version 1.13.1+cu116 # Install torch geometric if 'IS_GRADESCOPE_ENV' not in os.environ: !pip install torch-scatter -f https://pytorch-geometric.com/whl/torch-1.13.1+cu116.html !pip install torch-sparse -f https://pytorch-geometric.com/whl/torch-1.13.. 2023. 3. 21. [CS224w] 4. Graph Neural Networks 앞서 Node Embedding을 할 때는 임베딩 벡터를 이용하여 문제를 해결했다.이제 딥러닝 방법으로 node/edge/graph를 encoding하는 방법으로 나아가자. 그래프 데이터이므로 Grapn Neural Networks(GNN, GNNs)라 부른다.기존 MLP가 적합하지 않은 이유Naive하게 인접행렬$\mathbf{A}$을 concat하여 MLP에 적용해보자.MLP의 결과는 임베딩된 벡터 $\mathbf{z}_{\mathcal{G}}$가 output으로 나온다고 하면 \[ \mathbf{z}_{\mathcal{G}} = \mathrm{MLP}(\mathbf{A}[1] \oplus \mathbf{A}[2] \oplus \dots \oplus \mathbf{A}|\mathcal{V}| ]) \.. 2023. 3. 7. 이전 1 2 3 4 다음 728x90 반응형