-
Notifications
You must be signed in to change notification settings - Fork 10
/
mkdocs.yml
84 lines (77 loc) · 2.4 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
site_name: DEEL-LIP
nav:
- Home: index.md
- API Reference:
- deel.lip.activations: api/activations.md
- deel.lip.callbacks: api/callbacks.md
- deel.lip.constraints: api/constraints.md
- deel.lip.initializers: api/initializers.md
- deel.lip.layers: api/layers.md
- deel.lip.losses: api/losses.md
- deel.lip.metrics: api/metrics.md
- deel.lip.model: api/model.md
- deel.lip.normalizers: api/normalizers.md
- deel.lip.utils: api/utils.md
- Tutorials:
- "Getting started 1 - Creating a 1-Lipschitz neural network": notebooks/Getting_started_1.ipynb
- "Getting started 2 - Training an adversarially robust 1-Lipschitz neural network": notebooks/Getting_started_2.ipynb
- "Demo 0: Example & Usage": notebooks/demo0.ipynb
- "Demo 1: Wasserstein distance estimation on toy example": notebooks/demo1.ipynb
- "Demo 2: HKR Classifier on toy dataset": notebooks/demo2.ipynb
- "Demo 3: HKR Classifier on MNIST dataset": notebooks/demo3.ipynb
- "Demo 4: HKR Multiclass and fooling": notebooks/demo4.ipynb
theme:
name: "material"
logo: assets/lip_logo.png
favicon: assets/lip_logo.png
palette:
- scheme: default
primary: dark
accent: indigo
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- scheme: slate
toggle:
icon: material/toggle-switch
name: Switch to light mode
icon:
repo: fontawesome/brands/github
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
merge_init_into_class: true
docstring_section_style: spacy
separate_signature: true
- mknotebooks
markdown_extensions:
- footnotes
- extra
- admonition
- pymdownx.arithmatex:
generic: true
- pymdownx.highlight
- pymdownx.superfences
- codehilite
- toc:
baselevel: 1
permalink: true
toc_depth: 1-4
- def_list
- pymdownx.tasklist:
custom_checkbox: true
clickable_checkbox: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
extra_css:
- css/custom.css
extra_javascript:
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
- js/custom.js
repo_name: "deel-ai/deel-lip"
repo_url: "https://github.com/deel-ai/deel-lip"