-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathmkdocs.ko.yml
More file actions
169 lines (161 loc) · 4.58 KB
/
mkdocs.ko.yml
File metadata and controls
169 lines (161 loc) · 4.58 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
site_name: mlxcel
site_description: Apple Silicon과 CUDA GPU에서 동작하는 고성능 LLM/VLM 추론 엔진. Rust와 MLX C++ 네이티브 바인딩 기반.
site_url: https://mlxcel.lablup.ai/ko/manual/
repo_name: lablup/mlxcel
repo_url: https://github.com/lablup/mlxcel
edit_uri: edit/main/docs/ko/
docs_dir: docs/ko
site_dir: site/ko
theme:
name: material
language: ko
custom_dir: docs/overrides
features:
- announce.dismiss
- content.action.edit
- content.action.view
- content.code.annotate
- content.code.copy
- content.tabs.link
- content.tooltips
- header.autohide
- navigation.expand
- navigation.footer
- navigation.indexes
- navigation.sections
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
palette:
- scheme: default
primary: deep purple
accent: teal
toggle:
icon: material/brightness-7
name: 다크 모드로 전환
- scheme: slate
primary: deep purple
accent: blue grey
toggle:
icon: material/brightness-4
name: 라이트 모드로 전환
font:
text: Ubuntu
code: Ubuntu Mono
favicon: shared/images/favicon.png
logo: shared/images/logo.png
extra_css:
- shared/stylesheets/extra.css
hooks:
- docs/hooks/diagram_replacer.py
- docs/hooks/section_numbering.py
- docs/hooks/pdf_header.py
- docs/hooks/pdf_links.py
plugins:
- search:
separator: '[\s\-,:!=\[\]()`"/]+|\.(?!\d)|&[lg]t;|(?!\b)(?=[A-Z][a-z])'
lang:
- ko
- en
- mermaid2
- minify:
minify_html: true
minify_js: true
minify_css: true
htmlmin_opts:
remove_comments: true
- macros:
include_dir: docs/shared/snippets
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: none
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:material.extensions.emoji.to_svg
emoji_index: !!python/name:material.extensions.emoji.twemoji
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink:
repo_url_shorthand: true
user: lablup
repo: mlxcel
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
extra:
alternate:
- name: English
link: /en/manual/
lang: en
- name: 한국어
link: /ko/manual/
lang: ko
social:
- icon: fontawesome/brands/github
link: https://github.com/lablup/mlxcel
nav:
- 홈: index.md
- 시작하기:
- getting-started/index.md
- 설치: getting-started/installation.md
- 빠른 시작: getting-started/quickstart.md
- 설정: getting-started/configuration.md
- 핵심 개념:
- concepts/index.md
- 아키텍처 개요: concepts/architecture.md
- 모델 로딩 파이프라인: concepts/model-loading.md
- 추론 파이프라인: concepts/inference-pipeline.md
- KV 캐시 관리: concepts/kv-cache.md
- 샘플링 전략: concepts/sampling.md
- 사용 가이드:
- user-guide/index.md
- CLI 명령어: user-guide/cli.md
- 서버 모드: user-guide/server.md
- 비전-언어 모델: user-guide/vision-language-models.md
- LoRA 어댑터: user-guide/lora.md
- 추측적 디코딩: user-guide/speculative-decoding.md
- 연속 배칭: user-guide/continuous-batching.md
- 프롬프트 캐시: prompt_cache.md
- 언어 바이어스: user-guide/lang-bias.md
- API 레퍼런스:
- api-reference/index.md
- REST API: api-reference/rest-api.md
- 지원 모델: api-reference/supported-models.md
- 분산 추론:
- distributed/index.md
- 개요: distributed/overview.md
- 텐서 병렬화: distributed/tensor-parallelism.md
- 파이프라인 병렬화: distributed/pipeline-parallelism.md
- 분리형 추론: distributed/disaggregated-inference.md
- 개발 가이드:
- development/index.md
- 새 모델 추가하기: development/adding-models.md
- mlxcel-core FFI 브릿지: development/mlxcel-core.md
- 테스트: development/testing.md