-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathmkdocs.yml
More file actions
113 lines (108 loc) · 3.28 KB
/
mkdocs.yml
File metadata and controls
113 lines (108 loc) · 3.28 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
site_name: Fujitsu One Compression
site_description: Open-source Python library for post-training quantization of Large Language Models
site_url: https://FujitsuResearch.github.io/OneCompression/
repo_url: https://github.com/FujitsuResearch/OneCompression
repo_name: FujitsuResearch/OneCompression
theme:
name: material
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- content.code.copy
- content.code.annotate
- navigation.tabs
- navigation.sections
- navigation.expand
- navigation.top
- search.suggest
- search.highlight
- toc.follow
icon:
repo: fontawesome/brands/github
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
show_source: true
show_root_heading: true
show_root_full_path: false
heading_level: 2
members_order: source
docstring_style: google
show_signature_annotations: true
separate_signature: true
merge_init_into_class: true
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.tabbed:
alternate_style: true
- pymdownx.arithmatex:
generic: true
- pymdownx.snippets:
base_path: ["."]
- attr_list
- md_in_html
- toc:
permalink: true
extra_javascript:
- javascripts/mathjax.js
- https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js
nav:
- Home: index.md
- Getting Started:
- Installation: getting-started/installation.md
- Quick Start: getting-started/quickstart.md
- User Guide:
- Basic Usage: user-guide/basic-usage.md
- CLI: user-guide/cli.md
- Configuration: user-guide/configuration.md
- Pre-Process (Rotation): user-guide/pre-process.md
- Post-Process (LoRA SFT): user-guide/post-process.md
- vLLM Inference: user-guide/vllm-inference.md
- Examples: user-guide/examples.md
- Algorithms:
- Overview: algorithms/overview.md
- QEP (Quantization Error Propagation): algorithms/qep.md
- GPTQ: algorithms/gptq.md
- DBF (Double Binary Factorization): algorithms/dbf.md
- RTN (Round-To-Nearest): algorithms/rtn.md
- API Reference:
- api/index.md
- Runner: api/runner.md
- ModelConfig: api/model_config.md
- QEPConfig: api/qep_config.md
- Quantizers:
- Base Classes: api/quantizers/base.md
- AutoBit: api/quantizers/autobit.md
- GPTQ: api/quantizers/gptq.md
- DBF: api/quantizers/dbf.md
- RTN: api/quantizers/rtn.md
- JointQ: api/quantizers/jointq.md
- QuantizedModelLoader: api/quantized_model_loader.md
- Pre-Process: api/pre_process.md
- Post-Process: api/post_process.md
- Utilities: api/utilities.md
- Contributing: contributing.md
- Changelog: changelog.md