-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
executable file
·51 lines (44 loc) · 2.15 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
site_name: condor_pytorch
site_url: http://GarrettJenkinson.github.io/condor_pytorch
site_author: Garrett Jenkinson
site_description: condor_pytorch is a package implementing the CONDOR PyTorch utilities.
repo_url: https://github.com/GarrettJenkinson/condor_pytorch
#include_search: true
#theme: yeti
docs_dir: docs
theme: readthedocs
markdown_extensions:
- tables
- fenced_code
- mdx_math:
enable_dollar_delimiter: True # for use of inline $..$
extra_javascript:
- https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML
- mathjaxhelper.js
extra_css:
- extra.css
copyright: Copyright © 2021 <a href="http://github.com/GarrettJenkinson">Garrett Jenkinson</a>
nav:
- Home: index.md
- Installation: installation.md
- Tutorials:
- MNIST: tutorials/mnist.md
- Poker Hands: tutorials/poker.md
- Changelog: CHANGELOG.md
- Citing: citing.md
- License: license.md
- API:
- condor_pytorch.dataset: api_subpackages/condor_pytorch.dataset.md
- condor_pytorch.losses: api_subpackages/condor_pytorch.losses.md
- condor_pytorch.activations: api_subpackages/condor_pytorch.activations.md
- condor_pytorch.metrics: api_subpackages/condor_pytorch.metrics.md
- condor_pytorch.losses: api_modules/condor_pytorch.losses/CondorOrdinalCrossEntropy.md
- condor_pytorch.activations: api_modules/condor_pytorch.activations/ordinal_softmax.md
- condor_pytorch.dataset: api_modules/condor_pytorch.dataset/label_to_levels.md
- condor_pytorch.dataset: api_modules/condor_pytorch.dataset/levels_from_labelbatch.md
- condor_pytorch.dataset: api_modules/condor_pytorch.dataset/logits_to_label.md
- condor_pytorch.dataset: api_modules/condor_pytorch.dataset/proba_to_label.md
- condor_pytorch.metrics: api_modules/condor_pytorch.metrics/earth_movers_distance.md
- condor_pytorch.metrics: api_modules/condor_pytorch.metrics/mean_absolute_error.md
- condor_pytorch.metrics: api_modules/condor_pytorch.metrics/ordinal_accuracy.md
- condor_pytorch.metrics: api_modules/condor_pytorch.metrics/ordinal_softmax.md