(self)
| 99 | # self._base_train(train_cfgs) |
| 100 | |
| 101 | def test_litehrnet_oss(self): |
| 102 | train_cfgs = copy.deepcopy(TRAIN_CONFIGS[0]) |
| 103 | |
| 104 | train_cfgs['cfg_options'].update(dict(oss_io_config=get_oss_config())) |
| 105 | tmp_name = uuid.uuid4().hex |
| 106 | train_cfgs.update({'work_dir': os.path.join(TMP_DIR_OSS, tmp_name)}) |
| 107 | |
| 108 | self._base_train(train_cfgs) |
| 109 | |
| 110 | def test_hrnet(self): |
| 111 | train_cfgs = copy.deepcopy(TRAIN_CONFIGS[1]) |
nothing calls this directly
no test coverage detected