
keras
三寸光阴___
这个作者很懒,什么都没留下…
展开
-
keras框架使用小结
建立模型1.函数式模型from keras.layers import Input, Densefrom keras.models import Model# This returns a tensorinputs = Input(shape=(784,))# a layer instance is callable on a tensor, and returns a tenso...原创 2019-03-29 17:45:40 · 214 阅读 · 0 评论 -
目标检测yolo v1-v5总结
yolo v1这篇文章写的已经很好了,拿来做个笔记。核心步骤1.算法首先把输入图像划分成SS的格子,然后对每个格子都预测B个bounding boxes,每个bounding box都包含5个预测值:x,y,w,h和confidence。x,y就是bounding box的中心坐标,与grid cell对齐(即相对于当前grid cell的偏移值),使得范围变成0到1;w和h进行归一化(分别...原创 2019-04-15 17:49:35 · 3746 阅读 · 5 评论 -
基于深度学习的目标跟踪(Yolov3+deepsort)
最近有个计数的项目刚好可以用到目标跟踪,先跑通测试一下,感觉还不错。项目代码在这里。主要参考的是一下两个项目改的:deep_sort:https://github.com/nwojke/deep_sortkeras-yolov 3:https://github.com/qqwweee/keras-yolo3先下载这个项目:https://github.com/Qidian213/deep_...原创 2019-04-22 17:54:02 · 28002 阅读 · 54 评论