Skip to content

Commit 9621049

Browse files
committed
Added scaffolding for documentation.
Docs are generated using mkdocs and served via rtfd.io.
1 parent 10cffdc commit 9621049

File tree

8 files changed

+74
-4
lines changed

8 files changed

+74
-4
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
*.pyc
22
.*.swp
3+
.DS_Store
4+
deploy/

docs/assets/fathom.css

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
/* Fathom uses a light Open Sans for body and Gruppo for styled titles. */
2+
@import 'https://fonts.googleapis.com/css?family=Gruppo|Open+Sans';
3+
body, h1, h2, h3, h4, h5, h6, legend {
4+
font-family: 'Open Sans', 'Helvetica Neue', 'Helvetica';
5+
font-weight: 300;
6+
}
7+
/* Style all links in Fathom blue. */
8+
a, a:visited {
9+
color: #007da5;
10+
}
11+
12+
/***** Navigation Header *****/
13+
/* Remove the house icon near the title. */
14+
a.icon-home:before { content: ''; }
15+
/* Give the title a stylized look. */
16+
a.icon-home { /* Desktop */
17+
color: #fcfcfc;
18+
font-family: 'Gruppo';
19+
font-size: 30pt;
20+
font-weight: 400;
21+
margin-bottom: 5px;
22+
}
23+
.wy-nav-top a { /* Mobile */
24+
color: #fcfcfc;
25+
font-family: 'Gruppo';
26+
font-size: 24pt;
27+
font-weight: 400;
28+
margin-bottom: 5px;
29+
}
30+
31+
/* Add water as a background on desktop, just Fathom blue on mobile. */
32+
.wy-side-nav-search { /* Desktop */
33+
background: url(water-header.png) #007da5;
34+
padding: 5px;
35+
}
36+
.wy-nav-top {
37+
background-color: #007da5;
38+
}
39+
40+
/***** Navigation Body *****/
41+
.wy-menu-vertical a {
42+
color: #b3b3b3; /* Back to the default */
43+
}

docs/assets/water-header.png

72.2 KB
Loading

docs/faq.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Functions are missing from `cv2`
2+
3+
Unfortunately, the `cv2` package in PyPI is not OpenCV. It's a name-squatter who has managed to upload a useless, empty package. There are a couple of ways to install OpenCV:
4+
5+
1. Install from source by following the directions on the [OpenCV website](http://docs.opencv.org/2.4.13/doc/tutorials/introduction/linux_install/linux_install.html#linux-installation).
6+
2. Install via apt: `sudo apt-get install python-opencv`.
7+
3. Install using Anaconda: `conda install opencv`.

docs/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Fathom
2+
Reference workloads for modern deep learning.

docs/quickstart.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Getting Fathom
2+
3+
# Installing the Prerequisites
4+
5+
# Downloading Data
6+
7+
# Running the Workloads

mkdocs.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
site_name: Fathom
2+
repo_url: https://github.com/rdadolf/fathom
3+
site_description: 'Fathom: Reference Workloads for Modern Deep Learning Methods'
4+
google_analytics: ['UA-29492860-5', 'auto']
5+
6+
theme: 'readthedocs'
7+
site_dir: 'deploy'
8+
extra_css: [assets/fathom.css]
9+
10+
pages:
11+
- 'Overview': index.md
12+
- 'Getting Started': quickstart.md
13+
- 'Frequently Asked Questions': faq.md

requirements.txt

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)