Skip to content

Commit 5f628bf

Browse files
committed
update README
1 parent 0501ea7 commit 5f628bf

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
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

3535
# 👀 What's important
36-
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 and DGL are just like **TensorFlow**, but GraphGallery is more like **Keras**
36+
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 and DGL are just like **TensorFlow** while GraphGallery is more like **Keras**
3838
+ GraphGallery is more friendly to use
3939
+ GraphGallery is more efficiient
4040

@@ -50,7 +50,7 @@ python setup.py install
5050
```bash
5151
pip install -U graphgallery
5252
```
53-
# :octocat: Implementations
53+
# 🤖 Implementations
5454
In detail, the following methods are currently implemented:
5555

5656
## Semi-supervised models
@@ -216,7 +216,7 @@ model.build()
216216
# verbose takes 0, 1, 2, 3, 4
217217
his = model.train(idx_train, idx_val, verbose=1, epochs=100)
218218
# test your model
219-
# verbose takes 0, 1
219+
# verbose takes 0, 1, 2
220220
loss, accuracy = model.test(idx_test, verbose=1)
221221
print(f'Test loss {loss:.5}, Test accuracy {accuracy:.2%}')
222222
```
@@ -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 datasets
317317
This is motivated by [gnn-benchmark](https://github.com/shchur/gnn-benchmark/)
318318
```python
319319
from graphgallery.data import Graph
@@ -330,13 +330,13 @@ 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 models
334334
TODO
335335

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

339-
# ⭐ TODO Lists
339+
# ⭐ TODO List
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`

0 commit comments

Comments
 (0)