-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
66 lines (64 loc) · 2.05 KB
/
mkdocs.yml
File metadata and controls
66 lines (64 loc) · 2.05 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
site_name: DataForge
theme:
name: material
palette:
scheme: slate
primary: teal
features:
- navigation.tabs
- content.code.copy
plugins:
- search
- mkdocstrings:
handlers:
python:
setup_python_path: [.]
options:
show_source: true
members_order: alphabetical
nav:
- Home: index.md
- Operations:
- base operation: operations/file_operation.md
- move: operations/move.md
- delete: operations/delete.md
- slice: operations/slice.md
- dedup: operations/deduplicate.md
- clean-annotations: operations/clean_annotations.md
- convert-annotations: operations/convert_annotations.md
- stats: operations/stats.md
- API Reference:
- Main: api/data_forge.md
- Image Comparer: api/img_comparer.md
- Video slicer: api/video_slicer.md
- CacheIO: api/cache_io.md
- Hasher:
- Base Hasher: api/base_hasher.md
- DHash: api/dhash.md
- Annotation Converter:
- Base Converter: api/base_converter.md
- VOC to YOLO converter: api/voc_yolo_converter.md
- YOLO to VOC converter: api/yolo_voc_converter.md
- Reader:
- Base reader: api/base_reader.md
- XML reader: api/xml_reader.md
- TXT reader: api/txt_reader.md
- Writer:
- Base writer: api/base_writer.md
- XML writer: api/xml_writer.md
- TXT writer: api/yolo_writer.md
- Mixins:
- FileRemoverMixin: api/file_remover.md
- Stats:
- Feature extractor: api/feature_extractor.md
- Image Analyzer: api/image_analyzer.md
- Outlier Detector: api/outlier_detector.md
- Base Stats: api/base_stats.md
- Yolo Stats: api/yolo_stats.md
- VOC Stats: api/voc_stats.md
- Reporter:
- Base Reporter: api/base_reporter.md
- Image Dataset Reporter: api/image_reporter.md
- CLI:
- CLI launching: cli/data_forge.md
- Default Settings: cli/default_values.md