-
Notifications
You must be signed in to change notification settings - Fork 65
/
mkdocs.yml
164 lines (163 loc) · 6.2 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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
site_name: FloydHub Documentation
site_url: https://docs.floydhub.com
site_author: FloydHub Team
site_description: FloydHub is a zero setup Deep Learning platform for productive data science teams.
repo_url: https://github.com/floydhub/floyd-docs
theme_dir: 'theme_overrides'
google_analytics: ['UA-90905407-1', 'floydhub.com']
pages:
- Home: index.md
- Get Started:
- 'Core Concepts': getstarted/core_concepts.md
- 'Quick Start': getstarted/quick_start.md
- 'Tutorial': getstarted/get_started.md
- Projects:
- 'Create a New Project': guides/basics/create_new.md
- 'Delete a Project': guides/basics/delete.md
- Workspace:
- 'Workspace': guides/workspace.md
- 'Insights': guides/insights.md
- 'Run on FloydHub Button': guides/run_on_floydhub_button.md
- Jobs:
- 'Run a Job': guides/run_a_job.md
- 'Stop a Job': guides/stop_job.md
- 'Restart a Job': guides/restart_job.md
- 'Metrics': guides/jobs/metrics.md
- 'Enable Tensorboard': guides/jobs/tensorboard.md
- 'Serving Trained Model (aka Model API)': guides/serving.md
- 'Delete a Job': guides/delete_job.md
- 'Ignore Files': guides/floyd_ignore.md
- 'Slack Notifications': guides/notifications.md
- 'Troubleshooting & FAQs': faqs/job.md
- Data:
- 'Create and Upload a Dataset': guides/create_and_upload_dataset.md
- 'Delete a Dataset': guides/delete_dataset.md
- 'Mount Data to a Job': guides/data/mounting_data.md
- 'Symlink Mounted Data': guides/data/symlink_mounted_data.md
- 'Modify Data': guides/data/modify_data.md
- Environments:
- 'List of Available Environments': guides/environments.md
- 'Environment: TensorFlow': guides/tensorflow.md
- 'Environment: PyTorch': guides/pytorch.md
- 'Install Extra Dependencies': guides/jobs/installing_dependencies.md
- 'Using CPU vs GPU': guides/basics/using_gpu.md
- 'Troubleshooting & FAQs': faqs/environments.md
- Output:
- 'Save Output': guides/data/storing_output.md
- 'Download Saved Output': guides/download_output.md
- 'Browse Saved Output': guides/browse_output.md
- 'Using Previous Output in a New Job': guides/reusing_output.md
- Floyd CLI:
- 'Install Floyd CLI': guides/basics/install.md
- 'Log In Using Floyd CLI': guides/basics/login.md
- 'Using Shortened Job and Dataset Names': guides/shortnames.md
- CLI Commands:
- 'floyd': commands/index.md
- 'floyd login': commands/login.md
- 'floyd init': commands/init.md
- 'floyd run': commands/run.md
- 'floyd data': commands/data.md
- 'floyd logs': commands/logs.md
- 'floyd status': commands/status.md
- 'floyd output': commands/output.md
- 'floyd clone': commands/clone.md
- 'floyd info': commands/info.md
- 'floyd stop': commands/stop.md
- 'floyd delete': commands/delete.md
- 'floyd logout': commands/logout.md
- 'floyd upgrade': commands/upgrade.md
- 'floyd version': commands/version.md
- 'floyd restart': commands/restart.md
- Floyd Config File: floyd_config.md
- Examples:
- 'Style Transfer': examples/style_transfer.md
- 'Deep Text Corrector': examples/deep_corrector.md
- 'Deep Convolutional Generative Adversarial Networks': examples/dcgan.md
- Troubleshooting & FAQs:
- 'Installation': faqs/installation.md
- 'Signup and Login': faqs/authentication.md
- 'Using FloydHub': faqs/using_floydhub.md
- 'Job': faqs/job.md
- 'Plans': faqs/plans.md
- 'Billing': faqs/billing.md
- Need Help?: help.md
# REDIRECTS:
# To set up a redirect, add the file you want to redirect from in to the
# list below, using this pattern:
#
# - "": home/using_datasets.md
#
# Any page with a "" title will not show up in the sidebar. This is a hack
# we use to allow old URLs to exist while not showing them in the nav.
#
# Next, create a file in the location you specified and populate it with
# the following, replacing <page> with the page you want to redirect to:
#
# <meta http-equiv="refresh" content="0;URL='<page>'"></meta>
#
# {!redirect_message.md!}
#
- "": home/using_datasets.md
- "": home/install.md
- "": home/getting_started.md
- "": faqs/plans_legacy.md
# Replaced these with the Workspace page
- "": getstarted/quick_start_jupyter.md
- "": getstarted/get_started_jupyter.md
- "": guides/ssh.md
theme: material
extra:
# Use this to make a section open by default in the sidebar. These names have
# to match the titles in the `pages` section above. If a child section is
# defaulted to open, but its parent is not, the parent will be closed, but
# when you open the parent, the child will be open
nav_items_open_by_default:
- Projects
- Workspace
- Jobs
- Data
- Environments
- Output
- Get Started
- CLI Commands
palette:
primary: 'blue'
accent: 'blue'
extra:
logo: 'img/f_white_rect_small.png'
font:
text: 'Roboto'
code: 'Source Code Pro'
social:
- type: 'github'
link: 'https://github.com/floydhub'
- type: 'twitter'
link: 'https://twitter.com/floydhub_'
markdown_extensions:
- admonition
- codehilite
- footnotes
- toc(permalink=true)
- pymdownx.arithmatex
- pymdownx.betterem(smart_enable=all)
- pymdownx.caret
- pymdownx.critic
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist(custom_checkbox=true)
- pymdownx.tilde
- markdown_include.include:
base_path: docs
extra_css:
- css/bootstrap_paper.min.css
- css/style.css
copyright: Copyright © 2018 FloydHub
# We were having some favicon issues, likely in our theme's code. This is a
# config setting offered by our theme that fixes the issue
# https://github.com/squidfunk/mkdocs-material/pull/319
site_favicon: 'img/favicon.ico'