Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/freakwill/ezgcn

🕸️easy graph convolution net (GCN) based on keras. So easy!
https://github.com/freakwill/ezgcn

gcn keras

Last synced: 5 days ago
JSON representation

🕸️easy graph convolution net (GCN) based on keras. So easy!

Awesome Lists containing this project

README

        

在[GCN](https://github.com/zhouchunpong/GCN_Keras)基础上修改。更加接近**scikit-learn**用法。

更加简单好用,几乎无需文档,看一个例子即可`train.py`。

## 基本流程

- 建立模型, (快捷方法from_data)
- 训练, fit(X_train, y_train, [X_test])
- 测试/预测, predict()

## 注意事项

对分类问题,输出变量会被onehot编码,因此最终结果应该进行onehot解码。