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

Latest commit

 

History

History
18 lines (15 loc) · 641 Bytes

18-Day3.md

File metadata and controls

18 lines (15 loc) · 641 Bytes

BDMI --第三周学习小结

赵子瑜

本周课程的主要内容有:

  1. Numpy库的使用
    • 创建新数组 np.array( , dtype= ) np.zeros()
    • 支持大多数算术运算
    • 矩阵乘积 np.dot()
    • 数组变形 a.reshape(3,4) a.ravel()
  2. 人工神经元
    • 一组输入的数据-->线性变换-->激活函数-->输出
    • 常用的激活函数:sigmoid函数,tanh函数,ReLU函数
    • 用单个神经元实现and or 等功能
  3. 多层神经网络
    • 确定损失函数,利用梯度下降法优化权重
    • 结构更复杂,能实现单层网络实现不了的功能