-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmkdocs.yml
More file actions
100 lines (94 loc) · 2.84 KB
/
mkdocs.yml
File metadata and controls
100 lines (94 loc) · 2.84 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
site_name: VisionForge User Documentation
site_description: Complete guide for building neural networks with VisionForge
site_author: VisionForge Team
site_url: https://visionforge-docs.example.com
repo_name: devgunnu/visionforge
repo_url: https://github.com/devgunnu/visionforge
nav:
- Home: index.md
- Getting Started:
- Installation: getting-started/installation.md
- Quick Start: getting-started/quickstart.md
- Interface Overview: getting-started/interface.md
- Architecture Design:
- Creating Architecture Diagrams: architecture/creating-diagrams.md
- Layer Connection Rules: architecture/connection-rules.md
- Shape Inference: architecture/shape-inference.md
- Validation System: architecture/validation.md
- Layer Reference:
- Input Layers: layers/input.md
- Core Layers: layers/core.md
- Activation Functions: layers/activation.md
- Pooling Layers: layers/pooling.md
- Merge Operations: layers/merge.md
- Advanced Layers: layers/advanced.md
- Examples:
- Simple CNN: examples/simple-cnn.md
- ResNet Architecture: examples/resnet.md
- LSTM Networks: examples/lstm.md
- Custom Group Blocks: examples/group-blocks.md
- Code Generation:
- PyTorch Export: codegen/pytorch.md
- TensorFlow Export: codegen/tensorflow.md
- Custom Templates: codegen/custom-templates.md
- API Reference:
- REST API: api/rest-api.md
- Node Definitions: api/node-definitions.md
- Advanced Topics:
- Group Blocks: advanced/group-blocks.md
- AI Assistant: advanced/ai-assistant.md
- Project Sharing: advanced/sharing.md
- Troubleshooting:
- Common Issues: troubleshooting/common-issues.md
- Validation Errors: troubleshooting/validation-errors.md
- Performance Tips: troubleshooting/performance.md
theme:
name: material
palette:
- scheme: default
primary: blue
accent: blue
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: blue
accent: blue
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.tabs
- navigation.sections
- navigation.expand
- search.highlight
- search.share
font:
text: Roboto
code: Roboto Mono
plugins:
- search
- mermaid2
- mkdocs-video
- glightbox
markdown_extensions:
- codehilite
- admonition
- toc:
permalink: true
- tables
- fenced_code
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.details
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/devgunnu/visionforge
- icon: fontawesome/brands/twitter
link: https://twitter.com/visionforge