Skip to content
This repository has been archived by the owner on Sep 5, 2021. It is now read-only.

Latest commit

 

History

History
20 lines (16 loc) · 587 Bytes

04-Day7.md

File metadata and controls

20 lines (16 loc) · 587 Bytes

第七周课程总结

时间:2021.04.06

Keras

  • Keras是一套高级API,用来快速搭建深度神经网络
  • 核心概念
    • 模型:是组织层的一种方式,包括架构(连接关系)和权重参数
    • 层:包括Dense,Activation,Dropout,Flatten,Reshape等等
    • 激活函数:elu(指数线性单元)、relu(整流线性单元)
    • 优化器:最优化 SGD是最简单的优化器之一 随机梯度下降法
  • Keras使用流程
    • 定义网络
    • 编译网络
    • 训练网络
    • 评估网络
    • 数据预测
    • 保存/载入网络