forked from minimaxir/aitextgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
65 lines (58 loc) · 1.74 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
site_name: aitextgen
site_description: A robust Python tool for text-based AI training and generation using GPT-2.
site_author: Max Woolf (@minimaxir)
nav:
- Home: index.md
- Hello World Tutorial: tutorials/hello-world.md
- Loading a Model: load-model.md
- Saving a Model: save-model.md
- TokenDataset: dataset.md
- Training an aitextgen Model:
- Colaboratory Notebooks: tutorials/colab.md
# - Improving Training Performance: train-performance.md
- Training a GPT-2 Model From Scratch: tutorials/model-from-scratch.md
- Loggers: loggers.md
- Generating from an aitextgen Model:
- Generating Text: generate.md
- Improving Generation Performance: generate-performance.md
- Generating From GPT-2 1.5B: tutorials/generate_1_5b.md
- Importing from gpt-2-simple: gpt-2-simple.md
- Helpful Notes: helpful-notes.md
- Ethics: ethics.md
- Command-Line Interface: cli.md
- Upload Model to Huggingface: upload.md
theme:
name: "material"
palette:
primary: "indigo"
accent: "indigo"
font:
text: "Source Sans Pro"
code: "Fira Code"
features:
- tabs
- instant
icon:
logo: fontawesome/solid/robot
repo: fontawesome/brands/github
repo_name: minimaxir/aitextgen
repo_url: https://github.com/minimaxir/aitextgen
edit_uri: ""
copyright: "Copyright © 2019 - 2020 Max Woolf"
extra:
social:
- icon: "fontawesome/brands/github-alt"
link: "https://github.com/minimaxir/aitextgen"
- icon: "fontawesome/brands/twitter"
link: "https://twitter.com/minimaxir"
markdown_extensions:
- codehilite:
guess_lang: false
- mkautodoc
- admonition
- toc:
permalink: true
plugins:
- search # necessary for search to work
- minify:
minify_html: true