-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathmkdocs.yml
More file actions
24 lines (21 loc) · 1.13 KB
/
Copy pathmkdocs.yml
File metadata and controls
24 lines (21 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
site_name: Keras Deep Learning on Graphs
site_url: http://vermaMachineLearning.github.io/keras-deep-graph-learning
repo_url: https://github.com/vermaMachineLearning/keras-deep-graph-learning
pages:
- Home: index.md
- Layers:
- Graph Convolutional Layers: Layers/Convolution/graph_conv_layer.md
- Graph Attention Layers: Layers/Attention/graph_attention_layer.md
- Graph Recurrent Layers: Layers/Recurrent/graph_conv_recurrent_layer.md
- Graph Capsule CNN Layers: Layers/Graph Capsule Neural Network/graph_capsule_cnn.md
- Graph Neural Network Layers: Layers/Graph Neural Network/graph_neural_networks.md
- Graph Convolution Filters: Filters/graph_conv_filters.md
- About: about.md
theme: readthedocs
#the third-party extenison mdx_math.py comes with a setup.py script
# Thank you Dmitry Shachnev (https://github.com/mitya57/python-markdown-math)
markdown_extensions:
- mdx_math:
enable_dollar_delimiter: True #for use of inline $..$
# Required to load the MathJax javascript for the mdx_math.py
extra_javascript: ['https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML']