tensorflow
星空下的枫
新换的博客,一起学习,共同进步!望各位大神多多指教!
展开
-
tensorflow的 tf.layers.conv2d 的data_format 的 channel_last channel_first 的细节问题
在tensorflow CPU 中 data_format 仅支持 NHWC 即channel_list在GPU中都支持原创 2020-01-22 15:33:58 · 1202 阅读 · 0 评论 -
RuntimeError: module compiled against API version 0xc but this version of numpy is 0xb
RuntimeError: module compiled against API version 0xc but this version of numpy is 0xb解决方法:把numpy版本升为1.14.6原创 2019-02-23 23:17:22 · 16839 阅读 · 0 评论 -
Yolov3的理解
YOLO3改进有: 调整了网络结构 利用多尺度特征进行对象检测 对象分类用Logistic取代了softmax Yolo_v3网路就是使用了darknet-53的前面的52层,大量使用残差的跳层连接。它借鉴了残差网络residual network的做法,在一些层之间设置了快捷链路。在YOLO3更进...原创 2019-07-31 19:23:09 · 1701 阅读 · 0 评论