Skip to content

Commit 08a3ed1

Browse files
authored
Switch to pluto frontmatter (#214)
1 parent e1aedc1 commit 08a3ed1

File tree

7 files changed

+1051
-45
lines changed

7 files changed

+1051
-45
lines changed

docs/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
1313

1414

1515
[compat]
16-
DemoCards = "^0.4.10"
16+
DemoCards = "^0.4.11"

docs/pluto_output/gnn_intro_pluto.md

Lines changed: 327 additions & 0 deletions
Large diffs are not rendered by default.

docs/pluto_output/graph_classification_pluto.md

Lines changed: 281 additions & 0 deletions
Large diffs are not rendered by default.

docs/pluto_output/node_classification_pluto.md

Lines changed: 413 additions & 0 deletions
Large diffs are not rendered by default.

docs/tutorials/introductory_tutorials/gnn_intro_pluto.jl

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
### A Pluto.jl notebook ###
2-
# v0.19.11
2+
# v0.19.13
3+
4+
#> [frontmatter]
5+
#> author = "[Carlo Lucibello](https://github.com/CarloLucibello)"
6+
#> title = "Hands-on introduction to Graph Neural Networks"
7+
#> date = "2022-05-22"
8+
#> description = "A beginner level introduction to graph machine learning using GraphNeuralNetworks.jl"
9+
#> cover = "assets/intro_1.png"
310

411
using Markdown
512
using InteractiveUtils
@@ -36,17 +43,6 @@ begin
3643
Random.seed!(17) # for reproducibility
3744
end;
3845

39-
# ╔═╡ cc051aa1-b929-4bca-b261-7f797a644a2b
40-
md"""
41-
---
42-
title: Hands-on introduction to Graph Neural Networks
43-
cover: assets/intro_1.png
44-
author: "[Carlo Lucibello](https://github.com/CarloLucibello)"
45-
date: 2022-05-24
46-
description: A beginner level introduction to graph machine learning using GraphNeuralNetworks.jl.
47-
---
48-
"""
49-
5046
# ╔═╡ 03a9e023-e682-4ea3-a10b-14c4d101b291
5147
md"""
5248
*This Pluto notebook is a julia adaptation of the Pytorch Geometric tutorials that can be found [here](https://pytorch-geometric.readthedocs.io/en/latest/notes/colabs.html).*
@@ -339,7 +335,6 @@ Furthermore, we did this all with a few lines of code, thanks to the GraphNeural
339335
"""
340336

341337
# ╔═╡ Cell order:
342-
# ╟─cc051aa1-b929-4bca-b261-7f797a644a2b
343338
# ╟─03a9e023-e682-4ea3-a10b-14c4d101b291
344339
# ╟─6f20e59c-b002-4d22-9ee0-b62596574776
345340
# ╠═361e0948-d91a-11ec-2d95-2db77435a0c1

docs/tutorials/introductory_tutorials/graph_classification_pluto.jl

Lines changed: 13 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
### A Pluto.jl notebook ###
2-
# v0.19.11
2+
# v0.19.13
3+
4+
#> [frontmatter]
5+
#> author = "[Carlo Lucibello](https://github.com/CarloLucibello)"
6+
#> title = "Graph Classification with Graph Neural Networks"
7+
#> date = "2022-05-23"
8+
#> description = "Tutorial for Graph Classification using GraphNeuralNetworks.jl"
9+
#> cover = "assets/graph_classification.gif"
310

411
using Markdown
512
using InteractiveUtils
@@ -32,17 +39,6 @@ begin
3239
Random.seed!(17) # for reproducibility
3340
end;
3441

35-
# ╔═╡ c07e1be9-adb6-4454-8128-bc8917406c58
36-
md"""
37-
---
38-
title: Graph Classification with Graph Neural Networks
39-
cover: assets/graph_classification.gif
40-
author: "[Carlo Lucibello](https://github.com/CarloLucibello)"
41-
date: 2022-05-23
42-
description: Tutorial for Graph Classification using GraphNeuralNetworks.jl
43-
---
44-
"""
45-
4642
# ╔═╡ 15136fd8-f9b2-4841-9a95-9de7b8969687
4743
md"""
4844
*This Pluto notebook is a julia adaptation of the Pytorch Geometric tutorials that can be found [here](https://pytorch-geometric.readthedocs.io/en/latest/notes/colabs.html).*
@@ -276,17 +272,16 @@ You have learned how graphs can be batched together for better GPU utilization,
276272
"""
277273

278274
# ╔═╡ Cell order:
279-
# ╟─c07e1be9-adb6-4454-8128-bc8917406c58
280-
# ╟─cc97a0002-2253-45b6-9266-017189dbb6fe
281-
# ╠═361e0948-d91a-11ec-2d95-2db77435a0c1
282-
# ╠═15136fd8-f9b2-4841-9a95-9de7b8969687
275+
# ╟─c97a0002-2253-45b6-9266-017189dbb6fe
276+
# ╟─361e0948-d91a-11ec-2d95-2db77435a0c1
277+
# ╟─15136fd8-f9b2-4841-9a95-9de7b8969687
283278
# ╠═f6e86958-e96f-4c77-91fc-c72d8967575c
284279
# ╠═24f76360-8599-46c8-a49f-4c31f02eb7d8
285280
# ╠═5d5e5152-c860-4158-8bc7-67ee1022f9f8
286281
# ╠═33163dd2-cb35-45c7-ae5b-d4854d141773
287282
# ╠═a8d6a133-a828-4d51-83c4-fb44f9d5ede1
288-
# ╠═3b3e0a79-264b-47d7-8bda-2a6db7290828
289-
# ╠═7f7750ff-b7fa-4fe2-a5a8-6c9c26c479bb
283+
# ╟─3b3e0a79-264b-47d7-8bda-2a6db7290828
284+
# ╟─7f7750ff-b7fa-4fe2-a5a8-6c9c26c479bb
290285
# ╠═936c09f6-ee62-4bc2-a0c6-749a66080fd2
291286
# ╟─2c6ccfdd-cf11-415b-b398-95e5b0b2bbd4
292287
# ╠═519477b2-8323-4ece-a7eb-141e9841117c

docs/tutorials/introductory_tutorials/node_classification_pluto.jl

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
### A Pluto.jl notebook ###
2-
# v0.19.11
2+
# v0.19.13
3+
4+
#> [frontmatter]
5+
#> author = "[Deeptendu Santra](https://github.com/Dsantra92)"
6+
#> title = "Node Classification with Graph Neural Networks"
7+
#> date = "2022-09-25"
8+
#> description = "Tutorial for Node classification using GraphNeuralNetworks.jl"
9+
#> cover = "assets/node_classsification.gif"
310

411
using Markdown
512
using InteractiveUtils
@@ -36,17 +43,6 @@ begin
3643
Random.seed!(17) # for reproducibility
3744
end
3845

39-
# ╔═╡ 8db76e69-01ee-42d6-8721-19a3848693ae
40-
md"""
41-
---
42-
title: Node Classification with Graph Neural Networks
43-
cover: assets/node_classsification.gif
44-
author: "[Deeptendu Santra](https://github.com/Dsantra92)"
45-
date: 2022-09-25
46-
description: Tutorial for Node classification using GraphNeuralNetworks.jl
47-
---
48-
"""
49-
5046
# ╔═╡ ca2f0293-7eac-4d9a-9a2f-fda47fd95a99
5147
md"""
5248
Following our previous tutorial in GNNs, we covered how to create graph neural networks.
@@ -399,7 +395,6 @@ In this tutorial, we have seen how to apply GNNs to real-world problems, and, in
399395
"""
400396

401397
# ╔═╡ Cell order:
402-
# ╟─8db76e69-01ee-42d6-8721-19a3848693ae
403398
# ╟─2c710e0f-4275-4440-a3a9-27eabf61823a
404399
# ╟─ca2f0293-7eac-4d9a-9a2f-fda47fd95a99
405400
# ╟─4455f18c-2bd9-42ed-bce3-cfe6561eab23

0 commit comments

Comments
 (0)