-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
141 lines (130 loc) · 4.49 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
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
repo_url: https://github.com/simonprovost/auto-sklong
edit_uri: blob/main/docs/
site_name: Auto-Sklong
site_author: Simon Provost
copyright: © Simon Provost 2024-present
site_description: >
Auto-Scikit-Longitudinal (Auto-Sklong) is an automated machine learning (AutoML)
library designed to analyse longitudinal data (Classification tasks focussed as of today)
using various search methods. Namely, Bayesian Optimisation via SMAC3, Asynchronous
Successive Halving, Evolutionary Algorithms, and Random Search via GAMA
remote_branch: main
theme:
name: 'material'
custom_dir: 'docs/theme'
favicon: 'assets/images/favicon.ico'
logo: 'assets/images/AutoSklongLogo.png'
icon:
repo: fontawesome/brands/github
language: en
palette:
- media: "(prefers-color-scheme: light)"
scheme: scikit_light
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to system preference
font:
text: Roboto
code: Roboto Mono
features:
- announce.dismiss
- content.tabs.link
- content.code.copy
- content.code.select
- content.code.annotate
- navigation.tabs
- navigation.top
- search.suggest
- toc.follow
- toc.integrate
extra_css:
- 'stylesheets/extra.css'
- 'stylesheets/landing.css'
extra_javascript:
- javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js
plugins:
- privacy
- social
- search
- minify
extra:
social:
- icon: fontawesome/brands/github-alt
link: https://github.com/simonprovost/
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/simonprovostdev/
- icon: fontawesome/brands/google-scholar
link: https://scholar.google.com/citations?user=Lv_LddYAAAAJ
- icon: fontawesome/brands/orcid
link: https://orcid.org/0000-0001-8402-5464
- icon: fontawesome/brands/researchgate
link: https://www.researchgate.net/profile/Provost-Simon
- icon: fontawesome/brands/stack-overflow
link: https://stackoverflow.com/users/9814037/simon-provost
- icon: fontawesome/solid/building-columns
link: https://www.kent.ac.uk/computing/people/4973/provost-simon
markdown_extensions:
- markdown.extensions.admonition
- markdown.extensions.codehilite:
guess_lang: false
- def_list
- markdown.extensions.footnotes
- markdown.extensions.meta
- markdown.extensions.toc:
permalink: true
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.keys
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- attr_list
- md_in_html
- pymdownx.arithmatex:
generic: true
nav:
- "Home": index.md
- "Quick Start": quick-start.md
- "Temporal Dependency (Sklong doc)": https://simonprovost.github.io/scikit-longitudinal/temporal_dependency/
- "Search Space": search_space.md
- "API Reference":
- "Overview": API/index.md
- "AutoML Classes":
- "Gama (Base) (redirect to GAMA)": https://openml-labs.github.io/gama/master/api/index.html#gama
- "Gama Longitudinal Classifier": API/Gama_Longitudinal_Classifier.md
- "Search Methods":
- "Bayesian optimisation (BO)": "API/search_methods/bayesian_optimisation.md"
- "Asynchronous Evolutionary Algorithm (Async EA) (redirect to GAMA)": https://openml-labs.github.io/gama/master/api/index.html#asyncea
- "Asynchronous Successive Halving (ASHA) (redirect to GAMA)": https://openml-labs.github.io/gama/master/api/index.html#asynchronoussuccessivehalving
- "Random Search (redirect to GAMA)": https://openml-labs.github.io/gama/master/api/index.html#randomsearch
- "Examples": examples/index.md
- "Contributing": contribution.md
- "Release History": https://github.com/simonprovost/auto-sklong/releases
- "Experiments Paper": experiments.md
- "FAQ": faq.md