forked from allenai/allennlp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
55 lines (50 loc) · 1.91 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
site_name: AllenNLP
site_description: AllenNLP is a ..
site_url: https://allennlp.org/
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
repo_url: https://github.com/allenai/allennlp
edit_uri: edit/master/docs/
# TODO(markn): Consider adding GA here, if we care about it.
nav:
- AllenNLP: README.md
- 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 key is autogenerated by scripts/build_docs.py. Do not edit, as it will be overwritten."
- Roadmap: ROADMAP.md
- Contributing: CONTRIBUTING.md
- Licence: LICENSE.md
markdown_extensions:
- toc:
permalink: '#'
- markdown.extensions.codehilite:
guess_lang: true
- admonition
- codehilite
- extra