-
Notifications
You must be signed in to change notification settings - Fork 657
/
mkdocs.yml
40 lines (40 loc) · 1.12 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
site_name: PyTorch Metric Learning
nav:
- Home: index.md
- Datasets: datasets.md
- Distances: distances.md
- Losses: losses.md
- Miners: miners.md
- Reducers: reducers.md
- Regularizers: regularizers.md
- Samplers: samplers.md
- Trainers: trainers.md
- Testers: testers.md
- Utils:
- Accuracy Calculation: accuracy_calculation.md
- Inference Models: inference_models.md
- Logging Presets: logging_presets.md
- Common Functions: common_functions.md
- Distributed: distributed.md
- How to extend this library:
- Custom datasets: extend/datasets.md
- Custom losses: extend/losses.md
- Custom miners: extend/miners.md
- Frequently Asked Questions: faq.md
theme:
name: 'material'
palette:
primary: 'red'
accent: 'red'
logo: imgs/TinyLogo.png
favicon: imgs/Favicon.png
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.highlight
- pymdownx.superfences
- toc:
permalink: true
- attr_list
repo_name: 'KevinMusgrave/pytorch-metric-learning'
repo_url: 'https://github.com/KevinMusgrave/pytorch-metric-learning'