Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[GLE docs] minor fixes #2783

Merged
merged 1 commit into from
May 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion docs/learning_engine/dev_and_test.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ We provided a docker image `graphscope-dev` with all tools and dependices includ
```bash
# Use a mirror in HK aliyun to speed up the download if in need.
# export REGISTRY=registry.cn-hongkong.aliyuncs.com/
# TODO(yuansi): make it works

docker run --rm -it --shm-size=4096m REGISTRY/graphscope/graphscope-dev:latest
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ from graphscope.learning.examples.tf.trainer import LocalTrainer
gs.set_option(show_log=True)

# load the obgn-mag graph as example.
g = load_ogbn_mag()
graph = load_ogbn_mag()

# print the schema of the graph
print(graph)
Expand Down Expand Up @@ -109,7 +109,7 @@ lg = sess.graphlearn(
## Train the Model
```python
train(lg, node_type="paper", edge_type="cites",
class_num=349, # output dimension
features_num=128, # input dimension
)
class_num=349, # output dimension
features_num=128, # input dimension
)
```