[Docs] Fix a missing comma in tutorials/runner.md (#1146)

This commit is contained in:
gy77 2023-05-16 14:20:44 +08:00 committed by GitHub
parent 8a0fae01f5
commit ec2e00ae90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -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,
<details>
<summary>Where can I find the possible configuration options for the xxx argument?</summary>
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.
</details>

View File

@ -188,7 +188,7 @@ runner = Runner(
log_level='INFO',
# 加载权重的路径 (None 表示不加载)
load_from=None
load_from=None,
# 从加载的权重文件中恢复训练
resume=False
)