Skip to content

Commit 0ddc336

Browse files
mkirchfchollet
authored andcommitted
Update docs and add contributing page (#6432)
* Update docs and add contributing page * Add space for pep8
1 parent eaca5da commit 0ddc336

File tree

2 files changed

+22
-13
lines changed

2 files changed

+22
-13
lines changed

docs/autogen.py

Lines changed: 21 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@
88
- Getting started
99
Getting started with the sequential model
1010
Getting started with the functional api
11-
Examples
1211
FAQ
13-
Installation guide
1412
1513
- Models
1614
About Keras models
@@ -26,31 +24,39 @@
2624
explain common layer functions: get_weights, set_weights, get_config
2725
explain input_shape
2826
explain usage on non-Keras tensors
29-
Core layers
30-
Convolutional
31-
Recurrent
32-
Embeddings
33-
Normalization
34-
Advanced activations
35-
Noise
27+
Core Layers
28+
Convolutional Layers
29+
Pooling Layers
30+
Locally-connected Layers
31+
Recurrent Layers
32+
Embedding Layers
33+
Merge Layers
34+
Advanced Activations Layers
35+
Normalization Layers
36+
Noise Layers
37+
Layer Wrappers
38+
Writing your own Keras layers
3639
3740
- Preprocessing
38-
Image preprocessing
39-
Text preprocessing
40-
Sequence preprocessing
41+
Sequence Preprocessing
42+
Text Preprocessing
43+
Image Preprocessing
4144
4245
Losses
4346
Metrics
4447
Optimizers
4548
Activations
4649
Callbacks
4750
Datasets
51+
Applications
4852
Backend
49-
Initializations
53+
Initializers
5054
Regularizers
5155
Constraints
5256
Visualization
5357
Scikit-learn API
58+
Utils
59+
Contributing
5460
5561
'''
5662
from __future__ import print_function
@@ -509,3 +515,5 @@ def process_function_docstring(docstring):
509515
if not os.path.exists(subdir):
510516
os.makedirs(subdir)
511517
open(path, 'w').write(mkdown)
518+
519+
shutil.copyfile('../CONTRIBUTING.md', 'sources/contributing.md')

docs/mkdocs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,4 @@ pages:
5151
- Visualization: visualization.md
5252
- Scikit-learn API: scikit-learn-api.md
5353
- Utils: utils.md
54+
- Contributing: contributing.md

0 commit comments

Comments
 (0)