-
Notifications
You must be signed in to change notification settings - Fork 34
/
mkdocs.yml
84 lines (76 loc) · 2.16 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# Project information
site_name: Jean-Zay Users / Collaborative documentation
site_author: Jean-Zay contributors
site_url: https://jean-zay-doc.readthedocs.io/
site_description: >-
Collaborative documentation for using Jean Zay cluster. A complement to
official documentation.
# Repository
repo_name: jean-zay-users/jean-zay-doc
repo_url: https://github.com/jean-zay-users/jean-zay-doc
#edit_uri: master/edit/doc
# Copyright
#copyright: Copyright © 2020 Jean Zay contributors
# Google Analytics
#google_analytics:
# - UA-106080699-1
# - auto
# Configuration
theme:
name: material
icon:
repo: material/github
language: en
# palette:
# primary: green
# accent: green
# Customization
extra:
feature:
tabs: true
social:
- icon: material/github
link: https://github.com/jean-zay-users
- icon: fontawesome/brands/gitter
link: https://gitter.im/jean-zay-users/jean-zay-doc
- icon: material/earth
link: http://www.idris.fr/jean-zay/
# Extensions
markdown_extensions:
- admonition
- codehilite
- footnotes
- pymdownx.details
- pymdownx.superfences
- pymdownx.magiclink
- toc:
permalink: True
plugins:
- search
- macros:
module_name: docs/macros
# Page tree
nav:
- Home: index.md
- Access procedure: access-procedure.md
- Tips and Tricks:
- Shell configuration: tips/shell.md
- Python: tips/python.md
- SLURM: tips/slurm.md
- Singularity: tips/singularity.md
- Jupyterhub: tips/jupyterhub.md
- Miscellaneous: tips/miscellaneous.md
- Limitations: limitations.md
- Examples:
- Pytorch examples:
- Intro: examples/pytorch/README.md
- MNIST: examples/pytorch/mnist/README.md
- Distributed: examples/pytorch/distributed_stl10/README.md
- Tensorflow examples:
- Intro: examples/tf/README.md
- Single node: examples/tf/tf_simple/README.md
- Distributed with SlurmClusterResolver: examples/tf/tf_distributed/README.md
- Distributed with Horovod: examples/tf/tf_mpi/README.md
- Weights&Biases and Hydra: examples/tf/tf_wandb_hydra/README.md
- Dask examples:
- Through xarray: examples/dask/xarray/README.md