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 )