摘要:
李宏毅机器学习 05-1卷积神经网络 卷积神经网络中,图像矩阵大小为5x5x1,卷积核大小为3x3,步长大小为1,请问做了多少次卷积操作? 答案:9次 思考权值共享的作用: 减少参数的数量; 能够找到该卷积核代表的局部特征。 常见的池化操作有哪些? 一般池化:最大池化,平均池化 重叠池化 空金字塔池 阅读全文
摘要:
<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:sch 阅读全文
摘要:
2.3 实现属于我们自己的向量 Vector.py class Vector: def __init__(self, lst): self._values = lst #return len def __len__(self): return len(self._values) #return in 阅读全文