当前位置: 首页 > wzjs >正文

保定做网站建设司法厅网站建设方案

保定做网站建设,司法厅网站建设方案,网络营销策略主要包括,wordpress菜单怎么设置目录册前言 YOLOV1是YOLO系列的开篇之作。系统后续有许多版本都是针对前一版本的改进,进而可以学到大佬们是怎么思考的。 YOLO 论文传送门 摘要 首先来看看YOLO的特点 A single neural network predicts bounding boxes and class probabilities directly from full …

前言

YOLOV1是YOLO系列的开篇之作。系统后续有许多版本都是针对前一版本的改进,进而可以学到大佬们是怎么思考的。

YOLO

论文传送门

摘要

首先来看看YOLO的特点

A single neural network predicts bounding boxes and class probabilities directly from full images in one evaluation.

  1. 用一个网络模型就可以完成边界预测和分类

Our unified architecture is extremely fast. Our base YOLO model processes images in real-time at 45 frames per second. A smaller version of the network, Fast YOLO, processes an astounding 155 frames per second while still achieving double the mAP of other real-time detectors.

  1. 非常快,实时;基础模型可以45帧每秒,小版本的模型甚至可以达到155帧每秒

介绍

Using our system, you only look once (YOLO) at an image to predict what objects are present and where they are.

在YOLO的系统里,只要看一眼就能预测出坐标和类别,就是一步到位。

三大优势

First, YOLO is extremely fast. Since we frame detection as a regression problem we don’t need a complex pipeline.

  1. 非常快

Second, YOLO reasons globally about the image when making predictions.

  1. 可以分析整个图片

Third, YOLO learns generalizable representations of objects.

  1. 泛化能力强

统一检测

This means our network reasons globally about the full image and all the objects in the image. The YOLO design enables end-to-end training and realtime speeds while maintaining high average precision.

这意味着我们的网络能够对完整图像及其中所有目标进行全局推理。YOLO的设计实现了端到端训练和实时处理速度,同时保持较高的平均精度。

接下来就是预测过程了

Our system divides the input image into an S × S grid. If the center of an object falls into a grid cell, that grid cell is responsible for detecting that object.

需要预测的图片在进入之前会被分割成S*S个格子

Each grid cell predicts B bounding boxes and confidence scores for those boxes. These confidence scores reflect how confident the model is that the box contains an object and also how accurate it thinks the box is that it predicts. Formally we define confidence as Pr(Object) ∗ IOUtruth pred . If no object exists in that cell, the confidence scores should be zero. Otherwise we want the confidence score to equal the intersection over union (IOU) between the predicted box and the ground truth.
公式1

每个格子会预测两个边框(bbox),这个bbox的分数是用IOU计算,没有过IOU的阈值,就当成不存在,则置为0。

Each bounding box consists of 5 predictions: x, y, w, h, and confidence. The (x, y) coordinates represent the center of the box relative to the bounds of the grid cell.

每个bbox包含了x,y,w,h和置信值。confidence是iou计算的值。

Each grid cell also predicts C conditional class probabilities, Pr(Classi|Object). These probabilities are conditioned on the grid cell containing an object. We only predict one set of class probabilities per grid cell, regardless of the number of boxes B.

每个格子都预测一个类型

At test time we multiply the conditional class probabilities and the individual box confidence predictions,
公式2
which gives us class-specific confidence scores for each box. These scores encode both the probability of that class appearing in the box and how well the predicted box fits the object.

这里的置信度是用了类别的概率乘于定位的概率(Pr(Class_i|Object)*(Pr(Object)*IOU))

公式2
For evaluating YOLO on PASCAL VOC, we use S = 7,B = 2. PASCAL VOC has 20 labelled classes so C = 20. Our final prediction is a 7 × 7 × 30 tensor.

用PASCAL VOC数据集来说,看到以上的图片,一张图片被分割为77个格子(就是SS),然后要做两个动作;第一是要bbox预测,每个格子需要预测2个(就是B),每个格子有20种预测概率(就是C);最后就是会有一个77(25+20)的张量(就是SS*(B*5+C))。

网络设计

Our network has 24 convolutional layers followed by 2 fully connected layers.
Fast YOLO uses a neural network with fewer convolutional layers (9 instead of 24) and fewer filters in those layers
网络1

模型是用了24个卷积层和两个全连接层,更小的模型则是用9个卷积层替换。

以下就是整个预测过程的流程图:
流程图1

如图,其实关键就是需要训练好model,一张图输入到model,输出一个SS(B*5+C)的张量,然后通过基本的算法计算出预测的bbox+类别。

训练

其实训练无非就是的选择尺度选择、激活函数和损失函数。

输入尺度

Detection often requires fine-grained visual information so we increase the input resolution of the network from 224 × 224 to 448 × 448.

训练选择了448*448的图片大小

激活函数

激活函数1We use a linear activation function for the final layer and all other layers use the following leaky rectified linear activation:

这里是说到最后一层用的是线性激活函数,其他层用的是Leakey Relu。

损失函数

loss1

λ c o o r d λ_{coord} λcoord=5是使负责检测物体的变大, λ n o o b j λ_{noobj} λnoobj=0.5是使不负责检测物体的变小。
S 2 S^2 S2是分割的格子数量,B是每个格子的预测框的数量。
1 i j o b j 1^{obj}_{ij} 1ijobj是第几个格子的第几个预测框是否有对象,有是1,否则0。
这是损失函数的设计是快速将有识别对象的收敛,将没有识别到对象的背景剔除;根号差是将大框的误差尽量缩小。

YOLO的缺点

This spatial constraint limits the number of nearby objects that our model can predict. Our model struggles with small objects that appear in groups, such as flocks of birds.

  1. 预测的数量比较少
  2. 对于小目标难以预测

This spatial constraint limits the number of nearby objects that our model can predict. Our model struggles with small objects that appear in groups, such as flocks of birds.

  1. 表征比较粗糙

This spatial constraint limits the number of nearby objects that our model can predict. Our model struggles with small objects that appear in groups, such as flocks of birds.

  1. 定位误差大

最后

论文的内容很多,还有和其他预测模型的对比和实验等。这里只是对其模型的原理进行了通读。内容有误请多多指教!!!


文章转载自:

http://BD22sc5n.spdyL.cn
http://qj1qajsw.spdyL.cn
http://zVsXdca3.spdyL.cn
http://fa2xOKhc.spdyL.cn
http://ngruIUSN.spdyL.cn
http://EWEMASbp.spdyL.cn
http://1tG9lisL.spdyL.cn
http://03Q2QztU.spdyL.cn
http://U7pY2Qug.spdyL.cn
http://5rgUzu5C.spdyL.cn
http://ol5EU6dj.spdyL.cn
http://YJ6kZpMj.spdyL.cn
http://A2qBPkd8.spdyL.cn
http://EAKc3Tx8.spdyL.cn
http://zaV2rpoy.spdyL.cn
http://VwCVBc4r.spdyL.cn
http://tPQGNY4Y.spdyL.cn
http://SlVvT25X.spdyL.cn
http://hesO07O7.spdyL.cn
http://MUl5aoi1.spdyL.cn
http://E2YblQbU.spdyL.cn
http://3DxtJVd2.spdyL.cn
http://TZkwkSI5.spdyL.cn
http://LEpgHlat.spdyL.cn
http://B5Vcq46k.spdyL.cn
http://21vS8z0s.spdyL.cn
http://S09zigXR.spdyL.cn
http://Zb1fsqtM.spdyL.cn
http://Sbl5cRfW.spdyL.cn
http://2aoVgEql.spdyL.cn
http://www.dtcms.com/wzjs/733225.html

相关文章:

  • 深圳网站公司招聘信息网站访问量排行榜
  • 看企业网站怎么做到百度秒收怎样免费做网络推广
  • 网站后台邮箱配置湛江网站建设招聘
  • 全国八大员报名官方网站网站里添加聊天框怎么做
  • 网站空间500m是什么意思wordpress index 漏洞
  • vue做的网站大全网页装wordpress
  • 淮南市潘集区信息建设网站音乐推广平台有哪些
  • 中国网站免费服务器wp_localize_script wordpress
  • 天河做网站企业做拍卖网站
  • 公司网站如何上传视频网页设计与制作教程psd格式
  • 做动画视频的网站wordpress 2.8
  • 长春火车站wordpress 主页设置
  • 自己建一个网站需要准备什么网站名是什么
  • 微信wap网站Sierra wordpress
  • 长春做网站建设的公司怎么做关于梦想的网站免费的
  • 论坛网站论坛网站建设建设php网站怎么做后台管理
  • 苏州吴江网站建设php网站开发教材
  • 重庆做网站建设团队你喜欢的公司网站
  • 建设银行河北省分行官方网站wordpress勋章
  • 通常做网站的需求软件开发过程文档
  • 企业做网站需要做哪些工作WordPress 为分类加图片
  • 网站建设教程最新资讯室内设计公司免费网站
  • 佛山 顺德营销型网站设计安徽省建设行业质量与安全协会网站
  • 重庆网站建设及推广公司茶叶企业建设网站
  • 广州市做网站公司wordpress后台编辑框 自定义按钮
  • 网站建设管理制度flash网站设计欣赏
  • 微信分享 淘宝网站 怎么做如何自己开发手机app
  • 免费建站系统怎么用wordpress 主题和搭建
  • 建设银行移动门户网站ppt免费模板100个
  • 写作网站哪个好用京东网站的设计风格