-
Notifications
You must be signed in to change notification settings - Fork 6
/
mkdocs.yml
34 lines (32 loc) · 894 Bytes
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
site_name: Flexynesis Documentation
theme:
name: readthedocs #mkdocs
highlightjs: true
hljs_languages:
- yaml
nav:
- Home: index.md
- Getting Started: getting_started.md
- Command Line Interface: commandline.md
- Using Flexynesis on usegalaxy.eu: running_on_galaxy.md
- API:
- Model Classes:
- DirectPred: models.direct_pred.md
- GNN: models.gnn.md
- Supervised VAE: models.supervised_vae.md
- MultiTripletNetwork: models.triplet_encoder.md
- CrossModalPred: models.crossmodel_pred.md
- Network modules: modules.md
- Data Importer: data.md
- Feature Selection: feature_selection.md
- Training: main.md
- Utility Functions: utils.md
plugins:
- search
- mkdocstrings:
handlers:
python:
selection:
docstring_style: "google"
rendering:
show_source: true