Skip to content

Commit 17f20f6

Browse files
authored
Merge pull request neo4j#175 from adamnsch/export-gnn-example
Add GCN on CORA example notebook
2 parents 38d8abe + 6270681 commit 17f20f6

File tree

3 files changed

+379
-4
lines changed

3 files changed

+379
-4
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ For extensive documentation of all capabilities, please refer to the [GDS Python
3737
Extensive end-to-end examples in Jupyter ready-to-run notebooks can be found in the [`examples` source directory](https://github.com/neo4j/graph-data-science-client/tree/main/examples):
3838

3939
* [Computing similarities with kNN based on FastRP embeddings](https://github.com/neo4j/graph-data-science-client/tree/main/examples/fastrp-and-knn.ipynb)
40+
* [Exporting from GDS and running GCN with PyG](https://github.com/neo4j/graph-data-science-client/tree/main/examples/import-sample-export-gnn.ipynb)
4041

4142

4243
### Imports and setup

examples/fastrp-and-knn.ipynb

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"id": "5cb64c55",
66
"metadata": {},
77
"source": [
8-
"# graphdatascience example\n",
8+
"# FastRP+kNN end-to-end example\n",
99
"\n",
1010
"This notebook exemplifies how to use the `graphdatascience` Python library to operate Neo4j GDS.\n",
1111
"It runs the FastRP+kNN end-to-end example from the GDS Manual, found [here](https://neo4j.com/docs/graph-data-science/current/end-to-end-examples/fastrp-knn-example).\n",
@@ -16,7 +16,7 @@
1616
"Running this notebook requires a localhost Neo4j server with a recent GDS version (2.0+) installed.\n",
1717
"We recommend using Neo4j Desktop.\n",
1818
"\n",
19-
"Also required are the Python libraries neo4j ([Neo4j Python Driver](https://neo4j.com/docs/api/python-driver/current/index.html)) and of course the `graphdatascience` (see README for installation instructions)."
19+
"Also required are of course the `graphdatascience` Python library (see README for installation instructions)."
2020
]
2121
},
2222
{
@@ -214,7 +214,7 @@
214214
],
215215
"metadata": {
216216
"kernelspec": {
217-
"display_name": "Python 3 (ipykernel)",
217+
"display_name": "Python 3.8.10 64-bit",
218218
"language": "python",
219219
"name": "python3"
220220
},
@@ -229,8 +229,13 @@
229229
"nbconvert_exporter": "python",
230230
"pygments_lexer": "ipython3",
231231
"version": "3.8.10"
232+
},
233+
"vscode": {
234+
"interpreter": {
235+
"hash": "916dbcbb3f70747c44a77c7bcd40155683ae19c65e1c03b4aa3499c5328201f1"
236+
}
232237
}
233238
},
234239
"nbformat": 4,
235240
"nbformat_minor": 5
236-
}
241+
}

0 commit comments

Comments
 (0)