Skip to content

Commit 1322a7d

Browse files
committed
update README
1 parent 133dc9c commit 1322a7d

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@
3232
# GraphGallery
3333
GraphGallery is a gallery of state-of-the-arts graph neural networks for [TensorFlow 2.x](https://github.com/tensorflow/tensorflow) and [PyTorch](https://github.com/pytorch/pytorch). GraphGallery 0.4.x is a total re-write from previous versions, and some things have changed.
3434

35-
# What's important
35+
# 👀 What's important
3636
Difference between GraphGallery and [pytorch geometric (PyG)](https://github.com/rusty1s/pytorch_geometric), [deep graph library (DGL)](https://github.com/dmlc/dgl), etc...
37-
+ PyG, DGL are just like **TensorFlow**, but GraphGallery is more like **Keras**
37+
+ PyG and DGL are just like **TensorFlow**, but GraphGallery is more like **Keras**
3838
+ GraphGallery is more friendly to use
3939
+ GraphGallery is more efficiient
4040

4141

42-
# Installation
42+
# 🚀 Installation
4343
+ Build from source (latest version)
4444
```bash
4545
git clone https://github.com/EdisonLeeeee/GraphGallery.git
@@ -50,7 +50,7 @@ python setup.py install
5050
```bash
5151
pip install -U graphgallery
5252
```
53-
# Implementations
53+
# :octocat: Implementations
5454
In detail, the following methods are currently implemented:
5555

5656
## Semi-supervised models
@@ -94,7 +94,7 @@ In detail, the following methods are currently implemented:
9494
+ **Node2vec** from *Aditya Grover et al*, [📝node2vec: Scalable Feature Learning for Networks](https://arxiv.org/abs/1607.00653), *KDD'16*.
9595
[[🌋 TF]](https://github.com/EdisonLeeeee/GraphGallery/blob/master/examples/TensorFlow/test_Node2vec.ipynb)
9696

97-
# Quick Start
97+
# Quick Start
9898
## Datasets
9999
more details please refer to [GraphData](https://github.com/EdisonLeeeee/GraphData).
100100
### Planetoid
@@ -313,7 +313,7 @@ Test loss 1.0131, Test accuracy 82.20%
313313

314314
```
315315

316-
# How to add your custom datasets
316+
# How to add your custom datasets
317317
This is motivated by [gnn-benchmark](https://github.com/shchur/gnn-benchmark/)
318318
```python
319319
from graphgallery.data import Graph
@@ -330,20 +330,20 @@ mydataset.to_npz('path/to/mydataset.npz')
330330
mydataset = Graph.from_npz('path/to/mydataset.npz')
331331
```
332332

333-
# How to define your custom models
333+
# How to define your custom models
334334
TODO
335335

336-
# More Examples
336+
# 😎 More Examples
337337
Please refer to the [examples](https://github.com/EdisonLeeeee/GraphGallery/blob/master/examples) directory.
338338

339-
# TODO Lists
339+
# TODO Lists
340340
- [x] Add PyTorch models support
341341
- [ ] Add more GNN models (TF and Torch backend)
342342
- [ ] Support for more tasks, e.g., `graph Classification` and `link prediction`
343343
- [ ] Support for more types of graphs, e.g., Heterogeneous graph
344344
- [ ] Add Docstrings and Documentation (Building)
345345

346346

347-
# Acknowledgement
347+
# 😘 Acknowledgement
348348
This project is motivated by [Pytorch Geometric](https://github.com/rusty1s/pytorch_geometric), [Tensorflow Geometric](https://github.com/CrawlScript/tf_geometric) and [Stellargraph](https://github.com/stellargraph/stellargraph), and the original implementations of the authors, thanks for their excellent works!
349349

0 commit comments

Comments
 (0)