-
Notifications
You must be signed in to change notification settings - Fork 780
Expand file tree
/
Copy pathzensical.tr.toml
More file actions
174 lines (149 loc) · 4.3 KB
/
Copy pathzensical.tr.toml
File metadata and controls
174 lines (149 loc) · 4.3 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
[project]
site_name = "SAHI Dokümantasyonu"
site_url = "https://obss.github.io/sahi/tr/"
repo_url = "https://github.com/obss/sahi"
repo_name = "obss/sahi"
edit_uri = "https://github.com/obss/sahi/tree/main/docs/tr"
docs_dir = "docs/tr"
site_dir = "site/tr"
extra_css = ["stylesheets/extra.css"]
# zensical.toml ile birebir aynı nav yapısı, yalnızca başlıklar Türkçe
nav = [
{"Ana Sayfa" = "index.md"},
{"Hızlı Başlangıç" = "quick-start.md"},
{"Kullanım Kılavuzları" = [
{"Sliced Inference Nasıl Çalışır" = "guides/sliced-inference.md"},
{"Model Entegrasyonları" = "guides/models.md"},
{"Prediction Araçları" = "predict.md"},
{"COCO Veri Kümesi Operasyonları" = "coco.md"},
{"Dilimleme Araçları" = "slicing.md"},
{"Postprocessing Backend'leri" = "postprocess/backends.md"},
{"FiftyOne Görselleştirmesi" = "fiftyone.md"},
{"CLI Komutları" = "cli.md"},
]},
{"Notebook'lar" = "notebooks.md"},
{"Kod Referansı" = [
{"Yüksek Seviyeli API" = [
"predict.md",
"slicing.md",
]},
{"Çekirdek" = [
"annotation.md",
"prediction.md",
"auto_model.md",
]},
{"Modeller" = [
"models/base.md",
"models/ultralytics.md",
"models/yolov5.md",
"models/yoloe.md",
"models/yolo-world.md",
"models/mmdet.md",
"models/detectron2.md",
"models/huggingface.md",
"models/huggingface_segmentation.md",
"models/torchvision.md",
"models/rtdetr.md",
"models/roboflow.md",
]},
{"Postprocessing" = [
"postprocess/backends.md",
"postprocess/combine.md",
"postprocess/utils.md",
]},
{"Araçlar" = [
{"COCO Araçları" = "utils/coco.md"},
{"Bilgisayarlı Görü Araçları" = "utils/cv.md"},
{"Dosya Araçları" = "utils/file.md"},
]},
]},
{"API Referans İndeksi" = "api.md"},
{"Katkıda Bulunma" = "contributing.md"},
{"Lisans" = "license.md"},
{"Güncelleme Günlüğü" = "changelog.md"},
]
[project.theme]
language = "tr"
variant = "material"
logo = "images/sahi-logo.svg"
favicon = "images/sahi-logo.svg"
features = [
"navigation.tracking",
"content.code.copy",
"content.action.edit",
"content.tooltips",
"content.code.annotate",
"navigation.tabs",
"navigation.tabs.sticky",
"navigation.top",
"navigation.indexes",
]
font.text = "Inter"
font.code = "IBM Plex Mono"
icon.edit = "material/pencil"
[[project.theme.palette]]
scheme = "default"
primary = "custom"
toggle.icon = "material/brightness-7"
toggle.name = "Koyu moda geç"
[[project.theme.palette]]
scheme = "slate"
primary = "custom"
toggle.icon = "material/brightness-4"
toggle.name = "Açık moda geç"
# --- Alternate languages ---
[[project.extra.alternate]]
name = "English"
link = "/sahi/"
lang = "en"
[[project.extra.alternate]]
name = "中文"
link = "/sahi/zh/"
lang = "zh"
[[project.extra.alternate]]
name = "Türkçe"
link = "/sahi/tr/"
lang = "tr"
# --- Social links ---
[[project.extra.social]]
icon = "fontawesome/brands/github"
link = "https://github.com/obss/sahi"
[[project.extra.social]]
icon = "fontawesome/brands/python"
link = "https://pypi.org/project/sahi"
# --- Plugins ---
[project.plugins.search]
[project.plugins.mkdocstrings]
default_handler = "python"
[project.plugins.mkdocstrings.handlers.python.options]
parameter_headings = true
allow_inspection = true
show_bases = true
group_by_category = true
docstring_style = "google"
show_symbol_type_heading = true
show_root_heading = true
show_symbol_type_toc = true
show_category_heading = true
# --- Python Markdown extensions ---
[project.markdown_extensions.admonition]
[project.markdown_extensions.attr_list]
[project.markdown_extensions.md_in_html]
[project.markdown_extensions.toc]
permalink = true
# --- PyMdown extensions ---
[project.markdown_extensions.pymdownx.details]
[project.markdown_extensions.pymdownx.superfences]
[project.markdown_extensions.pymdownx.tabbed]
alternate_style = true
[project.markdown_extensions.pymdownx.snippets]
check_paths = true
[project.markdown_extensions.pymdownx.highlight]
anchor_linenums = true
line_spans = "__span"
pygments_lang_class = true
[project.markdown_extensions.pymdownx.arithmatex]
generic = true
[project.markdown_extensions.pymdownx.emoji]
emoji_index = "zensical.extensions.emoji.twemoji"
emoji_generator = "zensical.extensions.emoji.to_svg"