Skip to content

Commit 83eea4b

Browse files
BIGWangYuDongZwwWayne
authored andcommitted
[Fix] fix link (#6796)
* [Fix] fix lint
1 parent 5e246d5 commit 83eea4b

File tree

3 files changed

+18
-18
lines changed

3 files changed

+18
-18
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,13 @@ This project is released under the [Apache 2.0 license](LICENSE).
6666
- Add abstract and sketch of the papers in readmes
6767
- Fix some weight initialization bugs
6868

69-
Please refer to [changelog.md](docs/changelog.md) for details and release history.
69+
Please refer to [changelog.md](docs/en/changelog.md) for details and release history.
7070

71-
For compatibility changes between different versions of MMDetection, please refer to [compatibility.md](docs/compatibility.md).
71+
For compatibility changes between different versions of MMDetection, please refer to [compatibility.md](docs/en/compatibility.md).
7272

7373
## Benchmark and model zoo
7474

75-
Results and models are available in the [model zoo](docs/model_zoo.md).
75+
Results and models are available in the [model zoo](docs/en/model_zoo.md).
7676

7777

7878
<details open>
@@ -151,19 +151,19 @@ Results and models are available in the [model zoo](docs/model_zoo.md).
151151
- [x] [QueryInst (ICCV'2021)](configs/queryinst/README.md)
152152
</details>
153153

154-
Some other methods are also supported in [projects using MMDetection](./docs/projects.md).
154+
Some other methods are also supported in [projects using MMDetection](./docs/en/projects.md).
155155

156156
## Installation
157157

158-
Please refer to [get_started.md](docs/get_started.md) for installation.
158+
Please refer to [get_started.md](docs/en/get_started.md) for installation.
159159

160160
## Getting Started
161161

162-
Please see [get_started.md](docs/get_started.md) for the basic usage of MMDetection.
163-
We provide [colab tutorial](demo/MMDet_Tutorial.ipynb), and full guidance for quick run [with existing dataset](docs/1_exist_data_model.md) and [with new dataset](docs/2_new_data_model.md) for beginners.
164-
There are also tutorials for [finetuning models](docs/tutorials/finetune.md), [adding new dataset](docs/tutorials/customize_dataset.md), [designing data pipeline](docs/tutorials/data_pipeline.md), [customizing models](docs/tutorials/customize_models.md), [customizing runtime settings](docs/tutorials/customize_runtime.md) and [useful tools](docs/useful_tools.md).
162+
Please see [get_started.md](docs/en/get_started.md) for the basic usage of MMDetection.
163+
We provide [colab tutorial](demo/MMDet_Tutorial.ipynb), and full guidance for quick run [with existing dataset](docs/en/1_exist_data_model.md) and [with new dataset](docs/en/2_new_data_model.md) for beginners.
164+
There are also tutorials for [finetuning models](docs/en/tutorials/finetune.md), [adding new dataset](docs/en/tutorials/customize_dataset.md), [designing data pipeline](docs/en/tutorials/data_pipeline.md), [customizing models](docs/en/tutorials/customize_models.md), [customizing runtime settings](docs/en/tutorials/customize_runtime.md) and [useful tools](docs/en/useful_tools.md).
165165

166-
Please refer to [FAQ](docs/faq.md) for frequently asked questions.
166+
Please refer to [FAQ](docs/en/faq.md) for frequently asked questions.
167167

168168
## Contributing
169169

README_zh-CN.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,11 @@ MMDetection 是一个基于 PyTorch 的目标检测开源工具箱。它是 [Ope
6666

6767
如果想了解更多版本更新细节和历史信息,请阅读[更新日志](docs/changelog.md)
6868

69-
如果想了解 MMDetection 不同版本之间的兼容性, 请参考[兼容性说明文档](docs/compatibility.md)
69+
如果想了解 MMDetection 不同版本之间的兼容性, 请参考[兼容性说明文档](docs/zh_cn/compatibility.md)
7070

7171
## 基准测试和模型库
7272

73-
测试结果和模型可以在[模型库](docs/model_zoo.md)中找到。
73+
测试结果和模型可以在[模型库](docs/zh_cn/model_zoo.md)中找到。
7474

7575
<details open>
7676
<summary>已支持的骨干网络:</summary>
@@ -148,20 +148,20 @@ MMDetection 是一个基于 PyTorch 的目标检测开源工具箱。它是 [Ope
148148
- [x] [QueryInst (ICCV'2021)](configs/queryinst/README.md)
149149
</details>
150150

151-
我们在[基于 MMDetection 的项目](./docs/projects.md)中列举了一些其他的支持的算法。
151+
我们在[基于 MMDetection 的项目](./docs/zh_cn/projects.md)中列举了一些其他的支持的算法。
152152

153153
## 安装
154154

155-
请参考[快速入门文档](docs/get_started.md)进行安装。
155+
请参考[快速入门文档](docs/zh_cn/get_started.md)进行安装。
156156

157157
## 快速入门
158158

159-
请参考[快速入门文档](docs/get_started.md)学习 MMDetection 的基本使用。
160-
我们提供了 [colab 教程](demo/MMDet_Tutorial.ipynb),也为新手提供了完整的运行教程,分别针对[已有数据集](docs/1_exist_data_model.md)[新数据集](docs/2_new_data_model.md) 完整的使用指南
159+
请参考[快速入门文档](docs/zh_cn/get_started.md)学习 MMDetection 的基本使用。
160+
我们提供了 [colab 教程](demo/MMDet_Tutorial.ipynb),也为新手提供了完整的运行教程,分别针对[已有数据集](docs/zh_cn/1_exist_data_model.md)[新数据集](docs/zh_cn/2_new_data_model.md) 完整的使用指南
161161

162-
我们也提供了一些进阶教程,内容覆盖了 [finetune 模型](docs/tutorials/finetune.md)[增加新数据集支持](docs/tutorials/customize_dataset.md)[设计新的数据预处理流程](docs/tutorials/data_pipeline.md)[增加自定义模型](docs/tutorials/customize_models.md)[增加自定义的运行时配置](docs/tutorials/customize_runtime.md)[常用工具和脚本](docs/useful_tools.md)
162+
我们也提供了一些进阶教程,内容覆盖了 [finetune 模型](docs/zh_cn/tutorials/finetune.md)[增加新数据集支持](docs/zh_cn/tutorials/customize_dataset.md)[设计新的数据预处理流程](docs/zh_cn/tutorials/data_pipeline.md)[增加自定义模型](docs/zh_cn/tutorials/customize_models.md)[增加自定义的运行时配置](docs/zh_cn/tutorials/customize_runtime.md)[常用工具和脚本](docs/zh_cn/useful_tools.md)
163163

164-
如果遇到问题,请参考 [常见问题解答](docs_zh-CN/faq.md)
164+
如果遇到问题,请参考 [常见问题解答](docs/zh_cn/faq.md)
165165

166166
## 贡献指南
167167

docs/en/changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ Thanks @FloydHsiu, @RangiLyu, @ZwwWayne, @AndreaPi, @st9007a, @hachreak, @BIGWan
101101

102102
#### Documents
103103

104-
- Chinese version of [Corruption Benchmarking](docs/robustness_benchmarking.mddocs/robustness_benchmarking.md) (#6375)
104+
- Chinese version of [Corruption Benchmarking](robustness_benchmarking.md) (#6375)
105105
- Fix config path in docs (#6396)
106106
- Update GRoIE readme (#6401)
107107

0 commit comments

Comments
 (0)