From fbb8256371b3cb6ba11ca7c3f52ae7687310ac61 Mon Sep 17 00:00:00 2001 From: littletomatodonkey Date: Thu, 25 Nov 2021 16:23:40 +0800 Subject: [PATCH] update repo template (#5391) * fix template * add basic link * fix doc * fix doc * fix tipc template --- community/repo_template/README.md | 1 + community/repo_template/test_tipc/common_func.sh | 0 community/repo_template/test_tipc/prepare.sh | 0 .../repo_template/test_tipc/test_train_inference_python.sh | 0 docs/lwfx/ArticleReproduction_CV.md | 3 ++- 5 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 community/repo_template/test_tipc/common_func.sh create mode 100644 community/repo_template/test_tipc/prepare.sh create mode 100644 community/repo_template/test_tipc/test_train_inference_python.sh diff --git a/community/repo_template/README.md b/community/repo_template/README.md index c815f688..c86890e0 100644 --- a/community/repo_template/README.md +++ b/community/repo_template/README.md @@ -85,6 +85,7 @@ **注意:** 这里只需提供TIPC基础测试链条中模式`lite_train_lite_infer`的代码与文档即可。 + * 更多关于TIPC的介绍可以参考:[飞桨训推一体认证(TIPC)文档](https://github.com/PaddlePaddle/PaddleOCR/blob/dygraph/test_tipc/readme.md) * 关于Linux端基础链条测试接入的代码与文档说明可以参考:[基础链条测试接入规范](https://github.com/PaddlePaddle/models/blob/tipc/docs/tipc_test/development_specification_docs/train_infer_python.md),[PaddleOCR Linux端基础训练预测功能测试文档](https://github.com/PaddlePaddle/PaddleOCR/blob/dygraph/test_tipc/docs/test_train_inference_python.md) diff --git a/community/repo_template/test_tipc/common_func.sh b/community/repo_template/test_tipc/common_func.sh new file mode 100644 index 00000000..e69de29b diff --git a/community/repo_template/test_tipc/prepare.sh b/community/repo_template/test_tipc/prepare.sh new file mode 100644 index 00000000..e69de29b diff --git a/community/repo_template/test_tipc/test_train_inference_python.sh b/community/repo_template/test_tipc/test_train_inference_python.sh new file mode 100644 index 00000000..e69de29b diff --git a/docs/lwfx/ArticleReproduction_CV.md b/docs/lwfx/ArticleReproduction_CV.md index 3a2ba7d4..5e941c82 100644 --- a/docs/lwfx/ArticleReproduction_CV.md +++ b/docs/lwfx/ArticleReproduction_CV.md @@ -3,7 +3,7 @@ > 本文为针对 `CV` 方向的复现赛指南 > > 如果希望查阅 `NLP` 方向的复现赛指南,可以参考:[NLP方向论文复现赛指南](./ArticleReproduction_NLP.md) -> +> > 如果希望查阅 `推荐` 方向的复现赛指南,可以参考:[推荐方向论文复现赛指南](./ArticleReproduction_REC.md) ## 目录 @@ -900,3 +900,4 @@ w.backward() * 在接入时,建议将少量用于测试的数据打包(`tar -zcf lite_data.tar data/`),放在data目录下,后续在进行环境准备的时候,直接解压该压缩包即可。 * 接入过程中,需要依赖于inference模型,因此建议首先提供模型导出和基于inference模型的预测脚本,之后再接入TIPC测试代码与文档。 +* 接入过程中,如果需要在AiStudio中进行TensorRT预测,可以参考:[AiStudio中使用TensorRT进行预测教程](https://aistudio.baidu.com/aistudio/projectdetail/3027768)。 -- GitLab