mkdocs.yml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. site_name: Keras 中文文档
  2. theme:
  3. name: null
  4. custom_dir: theme
  5. static_templates:
  6. - 404.html
  7. include_search_page: true
  8. search_index_only: false
  9. highlightjs: true
  10. hljs_languages: []
  11. include_homepage_in_sidebar: true
  12. prev_next_buttons_location: bottom
  13. navigation_depth: 4
  14. titles_only: false
  15. sticky_navigation: true
  16. collapse_navigation: true
  17. docs_dir: sources
  18. repo_url: http://github.com/keras-team/keras-docs-zh
  19. site_url: http://keras.io/zh/
  20. site_description: 'Keras,Python 深度学习库中文文档。'
  21. dev_addr: '0.0.0.0:8000'
  22. google_analytics: ['UA-61785484-1', 'keras.io']
  23. nav:
  24. - 主页: index.md
  25. - 为什么选择 Keras?: why-use-keras.md
  26. - 快速开始:
  27. - Sequential 顺序模型指引: getting-started/sequential-model-guide.md
  28. - 函数式 API 指引: getting-started/functional-api-guide.md
  29. - FAQ 常见问题解答: getting-started/faq.md
  30. - 模型:
  31. - 关于 Keras 模型: models/about-keras-models.md
  32. - Sequential 顺序模型: models/sequential.md
  33. - Model (函数式 API): models/model.md
  34. - 网络层:
  35. - 关于 Keras 网络层: layers/about-keras-layers.md
  36. - 核心网络层: layers/core.md
  37. - 卷积层 Convolutional Layers: layers/convolutional.md
  38. - 池化层 Pooling Layers: layers/pooling.md
  39. - 局部连接层 Locally-connected Layers: layers/local.md
  40. - 循环层 Recurrent Layers: layers/recurrent.md
  41. - 嵌入层 Embedding Layers: layers/embeddings.md
  42. - 融合层 Merge Layers: layers/merge.md
  43. - 高级激活层 Advanced Activations Layers: layers/advanced-activations.md
  44. - 标准化层 Normalization Layers: layers/normalization.md
  45. - 噪声层 Noise layers: layers/noise.md
  46. - 层封装器 Layer wrappers: layers/wrappers.md
  47. - 编写你自己的层: layers/writing-your-own-keras-layers.md
  48. - 数据预处理:
  49. - 序列预处理: preprocessing/sequence.md
  50. - 文本预处理: preprocessing/text.md
  51. - 图像预处理: preprocessing/image.md
  52. - 损失函数 Losses: losses.md
  53. - 评估标准 Metrics: metrics.md
  54. - 优化器 Optimizers: optimizers.md
  55. - 激活函数 Activations: activations.md
  56. - 回调 Callbacks: callbacks.md
  57. - 常用数据集 Datasets: datasets.md
  58. - 应用 Applications: applications.md
  59. - 后端 Backend: backend.md
  60. - 初始化 Initializers: initializers.md
  61. - 正则化 Regularizers: regularizers.md
  62. - 约束项 Constraints: constraints.md
  63. - 可视化 Visualization: visualization.md
  64. - Scikit-learn API: scikit-learn-api.md
  65. - 工具 Utils: utils.md
  66. - 贡献: contributing.md
  67. - 经典样例:
  68. - RNN 加法: examples/addition_rnn.md
  69. - 自定义层 - antirectifier: examples/antirectifier.md
  70. - Baby RNN: examples/babi_rnn.md
  71. - Baby MemNN: examples/babi_memnn.md
  72. - CIFAR-10 CNN: examples/cifar10_cnn.md
  73. - CIFAR-10 ResNet: examples/cifar10_resnet.md
  74. - 卷积滤波器可视化: examples/conv_filter_visualization.md
  75. - 卷积 LSTM: examples/conv_lstm.md
  76. - Deep Dream: examples/deep_dream.md
  77. - 图片 OCR: examples/image_ocr.md
  78. - 双向 LSTM: examples/imdb_bidirectional_lstm.md
  79. - 1D CNN 文本分类: examples/imdb_cnn.md
  80. - CNN-LSTM 情感分类: examples/imdb_cnn_lstm.md
  81. - Fasttext 文本分类: examples/imdb_fasttext.md
  82. - LSTM 情感分类: examples/imdb_lstm.md
  83. - Sequence to sequence - 训练: examples/lstm_seq2seq.md
  84. - Sequence to sequence - 预测: examples/lstm_seq2seq_restore.md
  85. - Stateful LSTM: examples/lstm_stateful.md
  86. - LSTM for 文本生成: examples/lstm_text_generation.md
  87. - GAN 辅助分类器: examples/mnist_acgan.md