From 8656a1dd0ca62794ce29c6a97a0ab90a23e381c9 Mon Sep 17 00:00:00 2001 From: andyjpaddle Date: Wed, 20 Jul 2022 11:18:01 +0000 Subject: [PATCH] add ref --- ppocr/losses/rec_vl_loss.py | 4 ++++ ppocr/modeling/heads/rec_visionlan_head.py | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/ppocr/losses/rec_vl_loss.py b/ppocr/losses/rec_vl_loss.py index 43d1ade6..5cd87c70 100644 --- a/ppocr/losses/rec_vl_loss.py +++ b/ppocr/losses/rec_vl_loss.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/wangyuxin87/VisionLAN +""" from __future__ import absolute_import from __future__ import division diff --git a/ppocr/modeling/heads/rec_visionlan_head.py b/ppocr/modeling/heads/rec_visionlan_head.py index 9a25e64b..6ec92976 100644 --- a/ppocr/modeling/heads/rec_visionlan_head.py +++ b/ppocr/modeling/heads/rec_visionlan_head.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/wangyuxin87/VisionLAN +""" from __future__ import absolute_import from __future__ import division -- GitLab