From bc4657fe06987ea9a6a2d13ad9765c92729a17d2 Mon Sep 17 00:00:00 2001 From: Guanghua Yu <742925032@qq.com> Date: Wed, 3 Nov 2021 19:04:00 +0800 Subject: [PATCH] add reference link (#4445) --- ppdet/modeling/assigners/simota_assigner.py | 4 ++++ ppdet/modeling/necks/csp_pan.py | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/ppdet/modeling/assigners/simota_assigner.py b/ppdet/modeling/assigners/simota_assigner.py index eacd23022..ce22ad7e4 100644 --- a/ppdet/modeling/assigners/simota_assigner.py +++ b/ppdet/modeling/assigners/simota_assigner.py @@ -11,6 +11,10 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. +""" +This code is refer from: +https://github.com/open-mmlab/mmdetection/blob/master/mmdet/core/bbox/assigners/sim_ota_assigner.py +""" import paddle import numpy as np diff --git a/ppdet/modeling/necks/csp_pan.py b/ppdet/modeling/necks/csp_pan.py index fccd25b75..6efbb1546 100644 --- a/ppdet/modeling/necks/csp_pan.py +++ b/ppdet/modeling/necks/csp_pan.py @@ -11,6 +11,10 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. +""" +This code is refer from: +https://github.com/open-mmlab/mmdetection/blob/master/mmdet/models/necks/yolox_pafpn.py +""" import paddle import paddle.nn as nn -- GitLab