提交 25b8b35c 编写于 作者: W WenmuZhou

add rare

上级 8ac3423a
...@@ -135,7 +135,8 @@ PaddleOCR ...@@ -135,7 +135,8 @@ PaddleOCR
│ │ ├── det_db_loss.py // DB loss │ │ ├── det_db_loss.py // DB loss
│ │ ├── det_east_loss.py // EAST loss │ │ ├── det_east_loss.py // EAST loss
│ │ ├── det_sast_loss.py // SAST loss │ │ ├── det_sast_loss.py // SAST loss
│ │ ├── rec_ctc_loss.py // ctc loss │ │ ├── rec_ctc_loss.py // CTC loss
│ │ ├── rec_att_loss.py // Attention loss
│ ├── metrics // 评估指标 │ ├── metrics // 评估指标
│ │ ├── __init__.py // 构造 metric 相关代码 │ │ ├── __init__.py // 构造 metric 相关代码
│ │ ├── cls_metric.py // 方向分类器 metric │ │ ├── cls_metric.py // 方向分类器 metric
...@@ -162,10 +163,11 @@ PaddleOCR ...@@ -162,10 +163,11 @@ PaddleOCR
│ │ ├── heads // 头函数 │ │ ├── heads // 头函数
│ │ │ ├── __init__.py // 构造 head 相关代码 │ │ │ ├── __init__.py // 构造 head 相关代码
│ │ │ ├── cls_head.py // 方向分类器 分类头 │ │ │ ├── cls_head.py // 方向分类器 分类头
│ │ │ ├── det_db_head.py // db 检测头 │ │ │ ├── det_db_head.py // DB 检测头
│ │ │ ├── det_east_head.py // EAST 检测头 │ │ │ ├── det_east_head.py // EAST 检测头
│ │ │ ├── det_sast_head.py // SAST 检测头 │ │ │ ├── det_sast_head.py // SAST 检测头
│ │ │ ├── rec_ctc_head.py // 识别 ctc │ │ │ ├── rec_ctc_head.py // 识别 ctc
│ │ │ ├── rec_att_head.py // 识别 attention
│ │ ├── transforms // 图像变换 │ │ ├── transforms // 图像变换
│ │ │ ├── __init__.py // 构造 transform 相关代码 │ │ │ ├── __init__.py // 构造 transform 相关代码
│ │ │ └── tps.py // TPS 变换 │ │ │ └── tps.py // TPS 变换
......
...@@ -138,7 +138,8 @@ PaddleOCR ...@@ -138,7 +138,8 @@ PaddleOCR
│ │ ├── det_db_loss.py // DB loss │ │ ├── det_db_loss.py // DB loss
│ │ ├── det_east_loss.py // EAST loss │ │ ├── det_east_loss.py // EAST loss
│ │ ├── det_sast_loss.py // SAST loss │ │ ├── det_sast_loss.py // SAST loss
│ │ ├── rec_ctc_loss.py // ctc loss │ │ ├── rec_ctc_loss.py // CTC loss
│ │ ├── rec_att_loss.py // Attention loss
│ ├── metrics // Metrics │ ├── metrics // Metrics
│ │ ├── __init__.py // Construct metric code │ │ ├── __init__.py // Construct metric code
│ │ ├── cls_metric.py // Angle class metric │ │ ├── cls_metric.py // Angle class metric
...@@ -168,7 +169,8 @@ PaddleOCR ...@@ -168,7 +169,8 @@ PaddleOCR
│ │ │ ├── det_db_head.py // DB head │ │ │ ├── det_db_head.py // DB head
│ │ │ ├── det_east_head.py // EAST head │ │ │ ├── det_east_head.py // EAST head
│ │ │ ├── det_sast_head.py // SAST head │ │ │ ├── det_sast_head.py // SAST head
│ │ │ ├── rec_ctc_head.py // Ctc head │ │ │ ├── rec_ctc_head.py // CTC head
│ │ │ ├── rec_att_head.py // Attention head
│ │ ├── transforms // Transforms │ │ ├── transforms // Transforms
│ │ │ ├── __init__.py // Construct transform code │ │ │ ├── __init__.py // Construct transform code
│ │ │ └── tps.py // TPS transform │ │ │ └── tps.py // TPS transform
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册