DetectionModelHelper 类概览
在./detectron/modeling/model_builder.py
文件中的, Detectron 使用了 create()
函数来创建目标检测模型, 其中最主要的部分是使用了 detectron/modeling/detector.py
文件中的 class DetectionModelHelper()
类, 该类是 Detectron 所有类型模型的最基本结构, 下面, 我们就对该类进行解析. 首先, 还是老样子, 我们大致浏览一下这个文件中的类和函数, 以及各个函数的功能, 把握类的设计思路和整体结构.
1 | # ./detectron/modeling/detector.py |
导入的包和函数
该文件导入的包和函数, 及其它们的功能如下所示:
1 | # ./detectron/modeling/detector.py |
初始化函数
1 | # detectron/modeling/detector.py |
损失函数相关
1 | # ./detectron/modeling/detector.py |