Method
__init__
(self, config, mode, logger, seed=None)
Source from the content-addressed store, hash-verified
| 174 | class MultiScaleDataSet(SimpleDataSet): |
| 175 | |
| 176 | def __init__(self, config, mode, logger, seed=None): |
| 177 | super(MultiScaleDataSet, self).__init__(config, mode, logger, seed) |
| 178 | self.ds_width = config[mode]['dataset'].get('ds_width', False) |
| 179 | if self.ds_width: |
| 180 | self.wh_aware() |
| 181 | |
| 182 | def wh_aware(self): |
| 183 | data_line_new = [] |
Callers
nothing calls this directly
Tested by
no test coverage detected