(self)
| 10 | |
| 11 | class Exp(MyExp): |
| 12 | def __init__(self): |
| 13 | super(Exp, self).__init__() |
| 14 | self.depth = 0.33 |
| 15 | self.width = 0.25 |
| 16 | self.scale = (0.5, 1.5) |
| 17 | self.random_size = (10, 20) |
| 18 | self.test_size = (416, 416) |
| 19 | self.exp_name = os.path.split(os.path.realpath(__file__))[1].split(".")[0] |
| 20 | self.enable_mixup = False |
| 21 | |
| 22 | def get_model(self, sublinear=False): |
| 23 |
nothing calls this directly
no outgoing calls
no test coverage detected