How to implement a YOLO (v3) object detector from scratch in PyTorch: Part 3翻译与总结
Posted nwnu-lhy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了How to implement a YOLO (v3) object detector from scratch in PyTorch: Part 3翻译与总结相关的知识,希望对你有一定的参考价值。
对Ayoosh Kathuria的YOLOv3实现进行翻译和总结,原文链接如下:
https://blog.paperspace.com/how-to-implement-a-yolo-v3-object-detector-from-scratch-in-pytorch-part-3/
*首先翻译遵循不删不改的原则有一说一,对容易起到歧义的中文采取保留英文的方式。其中对原文没有删减但是略有扩充,其中某些阐释是我一句话的总结,如有错误请大家在留言区指出扶正。
这是从头开始实现YOLO v3检测器教程的第3部分。 在上一部分中,我们实现了YOLO架构中使用的层,在这一部分中,我们将在PyTorch中实现YOLO的网络架构,以便我们可以根据图像生成输出。
我们的目标是设计网络的前向传播。
我们将会使用PyTorch并基于YOLO v3来实现一个目标检测器,这是一种速度更快的目标检测算法。
本教程的代码在Python 3.5和PyTorch 0.4上运行。在这个Github repo中可以完整地找到它。
Part 1 : Understanding How YOLO works
Part 2 : Creating the layers of the network architecture
Part 3 (This one): Implementing the forward pass of the network
Part 4 : Objectness score thresholding and Non-maximum suppression
Part 5 : Designing the input and the output pipelines
以上是关于How to implement a YOLO (v3) object detector from scratch in PyTorch: Part 3翻译与总结的主要内容,如果未能解决你的问题,请参考以下文章
Lstm Cell in detail and how to implement it by pytorch
How to implement long running flows, sagas, business processes or similar
java 动作栏后退按钮。字体:https://stackoverflow.com/questions/10108774/how-to-implement-the-android-actionbar-
c_cpp http://stackoverflow.com/questions/3276546/how-to-implement-getch-function-of-c-in-linux
Spring Boot文档阅读笔记-how-to-implement-2-way-ssl-using-spring-boot
EF How to use context.Set and context.Entry, which ships with EF4.1 ?