-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
75 lines (71 loc) · 2.22 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
75
site_name: BCO-RAG Documentation
theme:
name: "material"
plugins:
- mkdocstrings:
default_handler: python
handlers:
python:
options:
docstring_style: numpy
docstring_selection_style: table
filters: []
show_symbol_type_heading: true
members_order: source
- search
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
nav:
- Home: "index.md"
- Setup and Quickstart: "installation.md"
- Output Structure: "output-structure.md"
- Usage: "options.md"
- Other Features:
- In-Progress Documentation: "in-progress.md"
- Parameter Search: "parameter-search.md"
- Automated Testing: "unit-testing.md"
- Evaluation App: "evaluation-app.md"
- Code Documentation:
- Core:
- "bcorag.md"
- Utils: "misc_functions.md"
- Option Picker: "option-picker.md"
- Prompts: "prompts.md"
- Types:
- Core Types: "bcorag-types.md"
- Output Map Types: "output-map-types.md"
- In-Progress Documentation: "aggregator.md"
- Parameter Search:
- Parent Class: "parameter-search-abc.md"
- Implementations:
- Grid Search: "grid-search.md"
- Random Search: "random-search.md"
- Types: "parameter-custom-types.md"
- Evaluation App:
- Frontend:
- App: "app.md"
- Components:
- Intermediate Screen: "intermediate-screen.md"
- Login Screen: "login-screen.md"
- Sidebar: "sidebar.md"
- Tab View: "tab-view.md"
- View Page: "view-page.md"
- Evaluation Frames:
- Base Class: "base-evaluation-frame.md"
- General Frame: "general-frame.md"
- Error Frame: "error-frame.md"
- Miscellaneous Frame: "miscellaneous-frame.md"
- Reference Frame: "reference-frame.md"
- Score Frame: "score-frame.md"
- Backend:
- App Start: "app-start.md"
- Types: "evaluator-custom-types.md"
- Login: "login.md"
- Utils: "miscellaneous.md"
- State: "state.md"