forked from autodistill/autodistill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
80 lines (73 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
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
site_name: Autodistill
site_url: https://docs.autodistill.com
site_author: Roboflow
site_description: Distill large foundational models into smaller, domain-specific models for deployment
repo_name: autodistill/autodistill
repo_url: https://github.com/autodistill/autodistill
edit_uri: https://github.com/autodistill/autodistill/tree/main/docs
copyright: Roboflow 2023. All rights reserved.
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/roboflow
- icon: fontawesome/brands/youtube
link: https://www.youtube.com/roboflow
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/company/roboflow-ai/mycompany/
- icon: fontawesome/brands/twitter
link: https://twitter.com/roboflow
extra_css:
- stylesheets/extra.css
nav:
- Home: index.md
- Detection:
- Base Models:
- DETIC: base_models/detic.md
- Grounded SAM: base_models/groundedsam.md
- Grounding DINO: base_models/grounding-dino.md
- OWL-ViT: base_models/owlvit.md
- Target Models:
- YOLOv5: target_models/yolov5.md
- YOLOv8: target_models/yolov8.md
- YOLOv8 Instance Segmentation: target_models/yolov8-instance-segmentation.md
- YOLO-NAS: target_models/yolo-nas.md
- Classification:
- Base Models:
- CLIP: base_models/clip.md
- Target Models:
- DINOv2: target_models/dinov2.md
- YOLOv5: target_models/yolov5.md
- YOLOv8: target_models/yolov8.md
- ViT: target_models/vit.md
- Contributing: contributing.md
- Changelog: changelog.md
theme:
name: 'material'
palette:
# Palette for light mode
- scheme: default
primary: 'custom'
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
primary: 'custom'
toggle:
icon: material/brightness-4
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
plugins:
- mkdocstrings
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- attr_list
- md_in_html
- pymdownx.tabbed:
alternate_style: true
- toc:
permalink: true