-
Notifications
You must be signed in to change notification settings - Fork 67
/
mkdocs.yml
56 lines (53 loc) · 2.07 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
site_name: Keras Documentation
theme: readthedocs
docs_dir: sources
repo_url: https://github.com/keras-team/keras-docs-ja
site_url: http://keras.io/ja/
# theme_dir: ../keras/docs/theme
site_description: 'Documentation for Keras, the Python Deep Learning library.'
dev_addr: '0.0.0.0:8000'
google_analytics: ['UA-61785484-1', 'keras.io']
pages:
- Home: index.md
- なぜKerasを使うか?: why-use-keras.md
- 初めに:
- Sequentialモデルのガイド: getting-started/sequential-model-guide.md
- Functional APIのガイド: getting-started/functional-api-guide.md
- FAQ: getting-started/faq.md
- モデル:
- モデルについて: models/about-keras-models.md
- Sequentialモデル: models/sequential.md
- Modelクラス (functional API): models/model.md
- レイヤー:
- レイヤーについて: layers/about-keras-layers.md
- Coreレイヤー: layers/core.md
- Convolutionalレイヤー: layers/convolutional.md
- Poolingレイヤー: layers/pooling.md
- Locally-connectedレイヤー: layers/local.md
- Recurrentレイヤー: layers/recurrent.md
- Embeddingレイヤー: layers/embeddings.md
- Mergeレイヤー: layers/merge.md
- Advanced Activationsレイヤー: layers/advanced-activations.md
- Normalizationレイヤー: layers/normalization.md
- Noiseレイヤー: layers/noise.md
- レイヤーラッパー: layers/wrappers.md
- オリジナルのKerasレイヤーを作成する: layers/writing-your-own-keras-layers.md
- データの前処理:
- シーケンスの前処理: preprocessing/sequence.md
- テキストの前処理: preprocessing/text.md
- 画像の前処理: preprocessing/image.md
- 損失関数: losses.md
- 評価関数: metrics.md
- 最適化: optimizers.md
- 活性化関数: activations.md
- コールバック: callbacks.md
- データセット: datasets.md
- Applications: applications.md
- バックエンド: backend.md
- 初期化: initializers.md
- 正則化: regularizers.md
- 制約: constraints.md
- 可視化: visualization.md
- Scikit-learn API: scikit-learn-api.md
- ユーティリティ: utils.md
- 貢献 : contributing.md