forked from airctic/icevision
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
95 lines (93 loc) · 3.02 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
site_name: IceVision
site_author: Lucas Goulart Vazquez, Farid Hassainia, and Contributors
copyright: airctic.com
theme:
name: 'material'
palette:
scheme: default # default slate
primary: 'blue'
accent: 'blue'
docs_dir: sources
repo_url: https://github.com/airctic/IceVision
site_url: https://airctic.com/
edit_uri: ""
site_description: 'Documentation for IceVision.'
# google_analytics: ['UA-44322747-3', 'https://airctic.github.io/icevision/']
markdown_extensions:
- codehilite
- pymdownx.snippets:
base_path: docs
- pymdownx.tabbed:
alternate_style: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_div_format
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- admonition
- attr_list
- pymdownx.details
extra:
manifest: manifest.webmanifest
extra_css:
- css/termynal.css
- css/custom.css
extra_javascript:
- https://unpkg.com/[email protected]/dist/mermaid.min.js
- js/termynal.js
- js/custom.js
- https://cdn.jsdelivr.net/npm/@widgetbot/crate@3
- js/crate.js
extra:
version:
provider: mike
nav:
- Home: index.md
- Installation: install.md
- Getting Started:
- Object Detection: getting_started_object_detection.md
- Instance Segmentation: getting_started_instance_segmentation.md
- Semantic Segmentation: getting_started_semantic_segmentation.md
- Keypoint Detection: getting_started_keypoint_detection.md
- Custom Parser: custom_parser.md
- Inference: inference.md
- Other Tutorials:
- Model Tracking Using Wandb: wandb_efficientdet.md
- How to use negative samples: negative_samples.md
- Fixed Splitter: voc_predefined_splits.md
- Progressive resizing: progressive_resizing.md
- MMDetection Custom Config: mmdet_custom_config.md
- Model Debugging with Plot Top Losses: plot_top_losses.md
- Advanced Keypoint Detection: ochuman_keypoint_detection.md
- Small Object Detection with SAHI: SAHI_inference.md
- Using FiftyOne in icevision: using_fiftyone_in_icevision.md
- Using Swin Transformer as Backbone: using_swin_transformer_as_backbone.md
- Transforms:
- Albumentations: albumentations.md
- Models: models.md
- API Documentation:
- Parser: parser.md
- Dataset: dataset.md
- Transforms:
- Albumentations: albumentations_tfms.md
- Models:
- Faster RCNN:
- common: faster_rcnn.md
- fastai: faster_rcnn_fastai.md
- lightning: faster_rcnn_lightning.md
- Mask RCNN:
- common: mask_rcnn.md
- fastai: mask_rcnn_fastai.md
- lightning: mask_rcnn_lightning.md
- EfficientDet:
- common: efficientdet.md
- fastai: efficientdet_fastai.md
- lightning: efficientdet_lightning.md
- Data Splitters: data_splits.md
- Contributing Guide: contributing.md
- Generating Docs: readme_mkdocs.md
- Code of Conduct: code_of_conduct.md
- About: about.md