-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmkdocs.yml
More file actions
113 lines (98 loc) · 2.94 KB
/
mkdocs.yml
File metadata and controls
113 lines (98 loc) · 2.94 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
site_name: DLBacktrace
site_description: A powerful explainable AI (XAI) framework for deep learning model interpretability
site_author: Lexsi Labs
site_url: https://lexsi.ai/
copyright: Copyright © 2025 Lexsi Labs
theme:
name: cinder
logo: assets/images/dlb_logo.png
favicon: assets/images/dlb_logo.png
highlightjs: true
hljs_languages:
- python
- yaml
- bash
- javascript
extra:
social:
- type: github
link: https://github.com/Lexsi-Labs
- type: globe
link: https://www.lexsi.ai/
- type: envelope
link: mailto:support@lexsi.ai
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.highlight:
use_pygments: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tabbed
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
plugins:
- search
extra_javascript:
- javascripts/mathjax.js
- https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
- javascripts/katex.js
- https://unpkg.com/katex@0/dist/katex.min.js
- https://unpkg.com/katex@0/dist/contrib/auto-render.min.js
extra_css:
- assets/css/custom.css
- https://unpkg.com/katex@0/dist/katex.min.css
nav:
- Home:
- Overview: index.md
- Key Features: home/features.md
- Installation: home/installation.md
- Quick Start: home/quickstart.md
- What's New: home/whats-new.md
- User Guide:
- Introduction: guide/introduction.md
- PyTorch Backend:
- Overview: guide/pytorch/overview.md
- DLBacktrace: guide/pytorch/dlbacktrace.md
- Pipeline: guide/pytorch/pipeline.md
- DLB Auto Sampler: guide/pytorch/auto-sampler.md
- Temperature Scaling: guide/pytorch/temperature-scaling.md
- MoE Models: guide/pytorch/moe-models.md
- Execution Engines: guide/pytorch/execution-engines.md
- Supported Operations: guide/pytorch/operations.md
- Model Tracing: guide/pytorch/tracing.md
- Relevance Propagation:
- Overview: guide/relevance/overview.md
- Parameters: guide/relevance/parameters.md
- Best Practices: guide/best-practices.md
- Examples:
- Colab Notebooks: examples/colab-notebooks.md
- Use Cases: examples/use-cases.md
- Developer Guide:
- Architecture: developer/architecture.md
- Contributing: developer/contributing.md
- Execution Engine: developer/execution-engine.md
- CUDA Development: developer/cuda-development.md
- Testing: developer/testing.md
- Support:
- FAQ: support/faq.md
- Known Issues: support/known-issues.md
- Changelog: support/changelog.md
- License: support/license.md