forked from allenai/allennlp
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmkdocs-skeleton.yml
More file actions
60 lines (54 loc) · 1.89 KB
/
mkdocs-skeleton.yml
File metadata and controls
60 lines (54 loc) · 1.89 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
site_name: AllenNLP
site_description: AllenNLP is a ..
site_url: https://allennlp.org/
extra_css:
- "css/extra.css"
theme:
name: material
palette:
primary: blue
accent: grey
logo: img/favicon.ico
favicon: img/favicon.ico
highlightjs: true
hljs_languages:
- python
- typescript
- json
repo_name: allenai/allennlp
# TODO(markn): Consider adding GA here, if we care about it.
nav:
- Home: README.md
- Versions:
- Latest: /latest/
- Stable: /stable/
- Master: /master/
- Tutorials:
- Predicting Paper Venues (pt1): tutorials/getting_started/predicting_paper_venues/predicting_paper_venues_pt1.md
- Predicting Paper Venues (pt2): tutorials/getting_started/predicting_paper_venues/predicting_paper_venues_pt2.md
- Walk Through:
- Configuration: tutorials/getting_started/walk_through_allennlp/configuration.md
- Creating a Model: tutorials/getting_started/walk_through_allennlp/creating_a_model.md
- Training/Evaluation: tutorials/getting_started/walk_through_allennlp/training_and_evaluating.md
- Using Pretrained Models: tutorials/getting_started/using_pretrained_models.md
- Semantic Parsing: tutorials/getting_started/semantic_parsing.md
- Laziness in AllenNLP: tutorials/getting_started/laziness.md
- How To:
- Create a configuration: tutorials/how_to/create_a_configuration.md
- Use Elmo: tutorials/how_to/elmo.md
- Train Transformer Elmo: tutorials/how_to/training_transformer_elmo.md
- Use Span Representations: tutorials/how_to/span_representations.md
- Using a Debugger: tutorials/how_to/using_a_debugger.md
- Visualizing Model Internals: tutorials/how_to/visualizing_model_internals.md
- API: 'This section is autogenerated, do not edit.'
- Roadmap: ROADMAP.md
- Contributing: CONTRIBUTING.md
- Licence: LICENSE.md
markdown_extensions:
- toc:
permalink: '#'
- markdown.extensions.codehilite:
guess_lang: true
- admonition
- codehilite
- extra