最新 最热

目标检测(object detection)系列(九) YOLOv3:取百家所长成一家之言

取百家所长成一家之言是一句书面意思上绝对褒义的话,形容一个论文却有些许的尴尬,但是YOLOv3确实是这样,没什么大的改动和创新点,而是融合借鉴了很多在其他的方案,最后效果还是很好的,文章中自己也提到了:“We made a bunch ...

2019-08-29
3

tensorflow | 维度转换

学习维度转换 shape 计算维度tf.shape(input,name = None)案例1a = tf.constant([i for i in range(20)],shape =[2,2,5])with tf.Session() as sess: print (sess.run(tf.sha...

2019-02-18
2

leetcode-566-Reshape the Matrix

题目描述:In MATLAB, there is a very useful function called 'reshape', which can reshape a matrix into a new one with different size but keep its original data.You...

2018-05-22
2

全连接与卷积计算的关系(全连接到全卷积)

全连接与卷积计算的关系是全连接到全卷积。全连接的输入是前一层激活函数的输出,全连接的输出是下一层激活函数的输入。在卷积计算中,全连接的输出维度可以看作是卷积计算中的channel。如果将全连接的输入reshape成[?, ...

2018-01-02
2