上一页 1 ··· 3 4 5 6 7
摘要: tf.whereimport tensorflow as tftemp = tf.reshape(tf.range(0, 16) + tf.constant(1, shape=[16]), [4, 1, 2, 2])category_index = tf.w... 阅读全文
posted @ 2018-10-18 22:23 overfitover 阅读(508) 评论(0) 推荐(0) 编辑
摘要: NMS 非极大值抑制import tensorflow as tfimport numpy as nprects=np.asarray([[1,2,3,4],[1,3,3,4], [1,3,4,4],[1,1,4,4],[1,1,3,4]],dtype=np... 阅读全文
posted @ 2018-10-18 16:30 overfitover 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 线性函数预测import tensorflow as tfimport numpy as npimport matplotlib.pyplot as pltx_data = np.random.rand(100).astype(np.float32)y_da... 阅读全文
posted @ 2018-10-18 16:17 overfitover 阅读(296) 评论(0) 推荐(0) 编辑
摘要: huber losshuber loss 是一种优化平方loss的一种方式,使得loss变化没有那么大。import numpy as npimport matplotlib.pyplot as pltimport tensorflow as tfdef h... 阅读全文
posted @ 2018-10-13 21:10 overfitover 阅读(902) 评论(0) 推荐(0) 编辑
摘要: AVOD 论文理解与代码解读论文简析概述网络结构BEV map特征提取rpn 网络特征融合第二阶段检测网络box 编码方向确定代码解读anchor 的产生mini batch的产生与作用rpn modelavod modelloss不足论文简析参考文章:cs... 阅读全文
posted @ 2018-10-09 16:03 overfitover 阅读(2660) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7