From ec2e00ae9060572de96759ef141254d352134d39 Mon Sep 17 00:00:00 2001 From: gy77 <64619863+gy-7@users.noreply.github.com> Date: Tue, 16 May 2023 14:20:44 +0800 Subject: [PATCH] [Docs] Fix a missing comma in tutorials/runner.md (#1146) --- docs/en/tutorials/runner.md | 4 ++-- docs/zh_cn/tutorials/runner.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/en/tutorials/runner.md b/docs/en/tutorials/runner.md index 93b63a6d..c6bd153f 100644 --- a/docs/en/tutorials/runner.md +++ b/docs/en/tutorials/runner.md @@ -189,7 +189,7 @@ runner = Runner( log_level='INFO', # load model weights from given path. None for no loading. - load_from=None + load_from=None, # resume training from the given path resume=False ) @@ -258,7 +258,7 @@ If you as a beginner do not immediately understand, it doesn't matter too much,
Where can I find the possible configuration options for the xxx argument? -You will find extensive instructions and examples in those tutorials of the corresponding modules. You can also find all possible arguments in [Runner's API documentation](mmengine.runner.Runner). If neither of the above resolves your query, you are always encouraged to start a topic in our [discussion forum](https://github.com/open-mmlab/mmengine/discussions). It also helps us improve documentations. +You will find extensive instructions and examples in those tutorials of the corresponding modules. You can also find all possible arguments in [Runner's API documentation](mmengine.runner.Runner). If neither of the above resolves your query, you are always encouraged to start a topic in our [discussion forum](https://github.com/open-mmlab/mmengine/discussions). It also helps us improve documentation.
diff --git a/docs/zh_cn/tutorials/runner.md b/docs/zh_cn/tutorials/runner.md index f600aa24..bb1d4d97 100644 --- a/docs/zh_cn/tutorials/runner.md +++ b/docs/zh_cn/tutorials/runner.md @@ -188,7 +188,7 @@ runner = Runner( log_level='INFO', # 加载权重的路径 (None 表示不加载) - load_from=None + load_from=None, # 从加载的权重文件中恢复训练 resume=False )