图神经网络 | Python实现LightGCN模型设计

图神经网络 | Python实现LightGCN模型设计

目录

    • 图神经网络 | Python实现LightGCN模型设计
      • 基本描述
      • 环境配置
      • 程序设计
      • 参考资料

基本描述

简化 GCN 的设计,提出了一个名为 LightGCN 的新模型,仅包括 GCN 中最重要的组件——邻域聚合——用于协同过滤。

环境配置

Python 3.6.5.
The required packages are as follows:
tensorflow == 1.11.0
numpy == 1.14.3
scipy == 1.1.0
sklearn == 0.19.1
cython == 0.29.15

程序设计

import os
import sys

你可能感兴趣的:(图与网络分析,python,神经网络,LightGCN,图神经网络)