-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathmkdocs.yml
134 lines (123 loc) · 4.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
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
site_name: Triage Documentation
theme:
name: 'material'
palette:
primary: 'blue grey'
accent: 'deep orange'
font:
text: 'Ubuntu'
code: 'Ubuntu Mono'
icon:
logo: ./material/book
favicon: 'assets/images/favicon.ico'
site_url: http://dssg.github.io/triage
docs_dir: sources
repo_name: 'dssg/triage'
repo_url: http://github.com/dssg/triage
edit_uri: edit/master/docs/sources
site_description: 'Documentation for Triage.'
extra:
social:
- icon: fontawesome/brands/github
link: 'https://github.com/dssg/triage'
- icon: fontawesome/brands/twitter
link: 'https://twitter.com/datascifellows'
- icon: fontawesome/brands/linkedin
link: 'https://linkedin.com/company/center-for-data-science-and-public-policy-university-of-chicago'
markdown_extensions:
- toc:
permalink: "#"
baselevel: 1
separator: "-"
- admonition
- codehilite:
guess_lang: false
- def_list
- footnotes
- meta
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.b64
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.keys
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols:
arrows: false
- pymdownx.highlight
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- pymdownx.superfences
extra_javascript:
- "js/mermaid.min.js"
- 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-MML-AM_CHTML'
extra_css:
- "triage_docs.css"
plugins:
- mkdocstrings:
default_handler: python
handlers:
python:
rendering:
show_source: false
watch:
- src/triage
nav:
- Home: index.md
- Online Tutorial (Google Colab): https://colab.research.google.com/github/dssg/triage/blob/master/example/colab/colab_triage.ipynb
- Get started with your own project:
- Quickstart guide: quickstart.md
- Suggested workflow: triage_project_workflow.md
- Dirty Duck Tutorial:
- Welcome!: dirtyduck/index.md
- Dirty duckling: dirtyduck/dirty_duckling.md
- Case studies:
- Problem description: dirtyduck/problem_description.md
- Early Warning System: dirtyduck/eis.md
- Resource prioritization: dirtyduck/inspections.md
- Triage:
- A deeper look into triage: dirtyduck/triage_intro.md
- Are you curious about the setup?:
- Infrastructure: dirtyduck/infrastructure.md
- Data preparation: dirtyduck/data_preparation.md
- Quick setup: dirtyduck/for_the_impatient.md
- Triage documentation:
- Experiment:
- Experiment Configuration: experiments/experiment-config.md
- Testing Feature Configuration: experiments/feature-testing.md
- Running an Experiment: experiments/running.md
- Upgrading an Experiment:
- v7 -> v8: experiments/upgrade-to-v8.md
- v6 -> v7: experiments/upgrade-to-v7.md
- v5 -> v6: experiments/upgrade-to-v6.md
- v3/v4 -> v5: experiments/upgrade-to-v5.md
- Temporal Validation Deep Dive: experiments/temporal-validation.md
- Cohort and Label Deep Dive: experiments/cohort-labels.md
- Prediction Ranking: experiments/prediction-ranking.md
- Feature Generation Recipe Book: experiments/features.md
- Experiment Algorithm: experiments/algorithm.md
- Experiment Architecture: experiments/architecture.md
- Model selection:
- Intro to Audition: audition/audition_intro.md
- Model Selection Concepts: audition/model_selection.md
- API Reference: api/audition/index.md
- Postmodeling:
- Using Postmodeling: postmodeling/index.md
- Postmodeling & Crosstabs Configuration: postmodeling/postmodeling-config.md
- Model governance: dirtyduck/ml_governance.md
- Predictlist: predictlist/index.md
- Scaling up: dirtyduck/aws_batch.md
- Database Provisioner: db.md
- API Reference:
- Audition:
- Auditioner: api/audition/auditioner.md
- Audition Configuration: api/audition/audition-config.md
- Selection Rules: api/audition/selection_rules.md
- Database Dependencies: api/audition/database-dependencies.md