-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
74 lines (71 loc) · 2.16 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
# pip install --upgrade mkdocs mkdocstrings-python markdown-include
# mkdocs serve -a 0.0.0.0:8000
# dev_addr: 0.0.0.0:8000
site_name: Bampe Weights - Visualizing and Predicting AI Weights
site_url: https://bampe-weights.readthedocs.io/en/latest/
repo_url: https://github.com/matlok-ai/bampe-weights
edit_uri: https://github.com/matlok-ai/bampe-weights/blob/main/docs/
site_description: An alternative approach to building Generative AI Models
site_author: matlok
# https://www.mkdocs.org/user-guide/configuration/#documentation-layout
theme:
name: readthedocs
# name: mkdocs
# locale: en
# https://www.mkdocs.org/user-guide/choosing-your-theme/
analytics:
gtag: G-5WXGL4TV74
highlightjs: true
features:
- navigation.expand
- navigation.path
- toc.integrate
# submodules:
# include: all
# recursive: true
nav:
- Visualizing AI:
- index.md
- Automated Exports:
- automation/export-guide.md
- Getting Started:
- sdk/setting-up-a-development-environment.md
- sdk/blender/blender-install-notes.md
- SDK and APIs:
- sdk/blender/blender-api-overview.md
- sdk/numpy/numpy-api-overview.md
- Profiling 3D Data:
- shapes/mc/using-marching-cubes-to-profile-3d-data-to-find-3d-shapes.md
- Extracting Tensor Weights:
- sdk/extract-tensor-weights-as-a-numpy-file-from-a-generative-ai-model.safetensors-file.md
- Converting Tensor Weights:
- sdk/convert-tensor-weights-to-tiff-file.md
- Predicting new AI Weight:
- sdk/use-stable-diffusion-to-predict-new-tensor-weights-for-a-new-generative-ai-model-tensor-weight-as-a-5-to-12-mb-tiff-file-chunk.md
extra:
version: "1.0.0"
plugins:
- search
# https://mkdocstrings.github.io/usage/#finding-out-the-anchor
- autorefs
- mkdocstrings:
handlers:
# See: https://mkdocstrings.github.io/python/usage/
python:
options:
docstring_style: sphinx
# https://mkdocstrings.github.io/python/usage/configuration/headings/
# show_root_toc_entry: true
# heading_level: 6
paths:
- bw
- bw.converter
- bw.diff
- bw.st
- examples
markdown_extensions:
- markdown_include.include:
base_path: .
- admonition
- toc:
toc_depth: 6