-
Notifications
You must be signed in to change notification settings - Fork 53
/
mkdocs.yml
124 lines (115 loc) · 4.33 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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
site_name: Xplique
google_analytics:
- UA-132343476-2
- auto
nav:
- Home: index.md
- Attributions methods:
- API Description: api/attributions/api_attributions.md
- Methods:
- DeconvNet: api/attributions/methods/deconvnet.md
- ForGRad: api/attributions/methods/forgrad.md
- Grad-CAM: api/attributions/methods/grad_cam.md
- Grad-CAM++: api/attributions/methods/grad_cam_pp.md
- Gradient Input: api/attributions/methods/gradient_input.md
- Guided Backprop: api/attributions/methods/guided_backpropagation.md
- Hsic Attribution Method: api/attributions/methods/hsic.md
- Integrated Gradient: api/attributions/methods/integrated_gradients.md
- KernelSHAP: api/attributions/methods/kernel_shap.md
- Lime: api/attributions/methods/lime.md
- Occlusion sensitivity: api/attributions/methods/occlusion.md
- Rise: api/attributions/methods/rise.md
- Saliency: api/attributions/methods/saliency.md
- SmoothGrad: api/attributions/methods/smoothgrad.md
- Sobol Attribution Method: api/attributions/methods/sobol.md
- SquareGrad: api/attributions/methods/square_grad.md
- VarGrad: api/attributions/methods/vargrad.md
- Metrics:
- API Description: api/attributions/metrics/api_metrics.md
- Deletion: api/attributions/metrics/deletion.md
- Insertion: api/attributions/metrics/insertion.md
- MuFidelity: api/attributions/metrics/mu_fidelity.md
- AverageStability: api/attributions/metrics/avg_stability.md
- PyTorch: api/attributions/pytorch.md
- Callable: api/attributions/callable.md
- Classification: api/attributions/classification.md
- Object Detection: api/attributions/object_detection.md
- Regression: api/attributions/regression.md
- Semantic Segmentation: api/attributions/semantic_segmentation.md
- Concept based:
- Cav: api/concepts/cav.md
- Tcav: api/concepts/tcav.md
- Craft: api/concepts/craft.md
- Example based:
- API Description: api/example_based/api_example_based.md
- Similar Examples:
- SimilarExamples: api/example_based/similar_examples/similar_examples.md
- Cole: api/example_based/similar_examples/cole.md
- Counterfactuals:
- LabelAwareCounterFactuals: api/example_based/counterfactuals/label_aware_counter_factuals.md
- NaiveCounterFactuals: api/example_based/counterfactuals/naive_counter_factuals.md
- Semifactuals:
- Kleor: api/example_based/semifactuals/kleor.md
- Prototypes:
- API Description: api/example_based/prototypes/api_prototypes.md
- ProtoGreedy: api/example_based/prototypes/proto_greedy.md
- ProtoDash: api/example_based/prototypes/proto_dash.md
- MMDCritic: api/example_based/prototypes/mmd_critic.md
- Projections: api/example_based/projections.md
- Feature visualization:
- Modern Feature Visualization (MaCo): api/feature_viz/maco.md
- Feature visualization: api/feature_viz/feature_viz.md
- Tutorials: tutorials.md
- Contributing: contributing.md
theme:
name: "material"
custom_dir: docs/overrides
logo: assets/x_logo.png
favicon: assets/x_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:
- numkdoc
- search
markdown_extensions:
- footnotes
- extra
- admonition
- pymdownx.arithmatex:
generic: true
- pymdownx.highlight
- pymdownx.superfences
- pymdownx.details
- codehilite
- toc:
permalink: true
toc_depth: 1-2
- 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:
version:
provider: mike
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/xplique"
repo_url: "https://github.com/deel-ai/xplique"