mirror of
https://github.com/open-mmlab/mmengine.git
synced 2025-06-03 08:30:14 +08:00
* add config test * Fix typo Co-authored-by: Zaida Zhou <58739961+zhouzaida@users.noreply.github.com> * Update tests/config/test_config.py Co-authored-by: Zaida Zhou <58739961+zhouzaida@users.noreply.github.com> * Reconstruct config test * Fix import logic and error test * Fix path error * Restructuring Config * simplify test logic simplify test logic * rename test_config file * add test complex dump and pretty text * adjust test sequence according to comment adjust test sequence according to comment * add comment and test for simple.config.py * add config test data * add init * remove __pycache__ * fix as comment * add syntax test case * remove tmp path and modify comment * add test for setattr Co-authored-by: Zaida Zhou <58739961+zhouzaida@users.noreply.github.com>
6 lines
216 B
Python
6 lines
216 B
Python
# Copyright (c) OpenMMLab. All rights reserved.
|
|
test_int = 1
|
|
test_list = [1, 2, 3]
|
|
# include type, optimizer can be initiated by build_from_cfg
|
|
optimizer = dict(type='SGD', lr=0.1, momentum=0.9, weight_decay=0.0001)
|