From 4e0f3c67ff2f8f75f76ab67ef7f7b8647ed2f3e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=99=93=E4=B8=B6=E6=A2=A6=E4=B8=B6=E4=BB=81?= <74444214+Daydreamer114@users.noreply.github.com> Date: Wed, 19 Feb 2025 14:26:19 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20=E6=9B=B4=E6=96=B0=E6=96=87=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/zh-cn/develop/issue-bot-usage.md | 2 +- docs/zh-cn/develop/overseas-client-adaptation.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/zh-cn/develop/issue-bot-usage.md b/docs/zh-cn/develop/issue-bot-usage.md index 40c3a67e01..f884b0e493 100644 --- a/docs/zh-cn/develop/issue-bot-usage.md +++ b/docs/zh-cn/develop/issue-bot-usage.md @@ -29,7 +29,7 @@ Issue Bot 使用的 action 为 [issue-checker](https://github.com/zzyyyl/issue-c Issue Bot 会对拉取请求标题的格式进行简单审查。它会增加 `ambiguous` 标签,除非拉取请求标题以下列任一单词开头: - `build` `chore` `ci` `doc` `docs` `feat` `fix` `perf` `refactor` `rfc` `style` `test` -- `Merge` `merge` `Revert` `revert` +- `Merge` `merge` `Revert` `revert` `Reapply` `Reapply` ### 手动触发 diff --git a/docs/zh-cn/develop/overseas-client-adaptation.md b/docs/zh-cn/develop/overseas-client-adaptation.md index e1ec741378..83ea1a17fe 100644 --- a/docs/zh-cn/develop/overseas-client-adaptation.md +++ b/docs/zh-cn/develop/overseas-client-adaptation.md @@ -134,7 +134,7 @@ amplified roi: 426, 272, 177, 201 - `pre_task` 代表前一个任务。 此外,日志中还会记录命令的执行情况(如 `Call`)和 `OCR` 的信息(如 `OcrPack::recognize`)。 -在这段日志中`"to_be_recognized"`,`"cur_retry":3,"retry_times":20` 表示已经重复识别了 10 次,最大识别次数为 20 次,到了最大识别次数后会跳过该任务并报错,继续执行下一个任务。如果前面的任务没有问题,我们基本可以确定是这里的识别出了问题,需要查看日志中的提到的任务,寻找是否有对应的 `模板文件`,对应任务的 `text` 是否错误,任务识别 `roi` 范围是否正确,从而找出问题所在并修改。 +在这段日志中`"to_be_recognized"`,`"cur_retry":3,"retry_times":20` 表示已经重复识别了 3 次,最大识别次数为 20 次,到了最大识别次数后会跳过该任务并报错,继续执行下一个任务。如果前面的任务没有问题,我们基本可以确定是这里的识别出了问题,需要查看日志中的提到的任务,寻找是否有对应的 `模板文件`,对应任务的 `text` 是否错误,任务识别 `roi` 范围是否正确,从而找出问题所在并修改。 通过查看对应模板图片,发现美服模板文件夹中有这张图的模板,但是大小明显大于国服图片,导致国服的 `roi` 用在美服上识别不出来,所以需要修改美服的 `task.json` 中的对应任务 `roi`,使其与美服图片大小对应。