mirror of
https://github.com/open-mmlab/mmengine.git
synced 2025-06-03 21:54:44 +08:00
[Docs] Fix a missing comma in tutorials/runner.md (#1146)
This commit is contained in:
parent
8a0fae01f5
commit
ec2e00ae90
@ -189,7 +189,7 @@ runner = Runner(
|
|||||||
log_level='INFO',
|
log_level='INFO',
|
||||||
|
|
||||||
# load model weights from given path. None for no loading.
|
# load model weights from given path. None for no loading.
|
||||||
load_from=None
|
load_from=None,
|
||||||
# resume training from the given path
|
# resume training from the given path
|
||||||
resume=False
|
resume=False
|
||||||
)
|
)
|
||||||
@ -258,7 +258,7 @@ If you as a beginner do not immediately understand, it doesn't matter too much,
|
|||||||
<details>
|
<details>
|
||||||
<summary>Where can I find the possible configuration options for the xxx argument?</summary>
|
<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>
|
</details>
|
||||||
|
|
||||||
|
@ -188,7 +188,7 @@ runner = Runner(
|
|||||||
log_level='INFO',
|
log_level='INFO',
|
||||||
|
|
||||||
# 加载权重的路径 (None 表示不加载)
|
# 加载权重的路径 (None 表示不加载)
|
||||||
load_from=None
|
load_from=None,
|
||||||
# 从加载的权重文件中恢复训练
|
# 从加载的权重文件中恢复训练
|
||||||
resume=False
|
resume=False
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user