(self)
| 11 | |
| 12 | class Exp(MyExp): |
| 13 | def __init__(self): |
| 14 | super(Exp, self).__init__() |
| 15 | self.depth = 1.0 |
| 16 | self.width = 1.0 |
| 17 | self.exp_name = os.path.split(os.path.realpath(__file__))[1].split(".")[0] |
| 18 | |
| 19 | def get_model(self, sublinear=False): |
| 20 | def init_yolo(M): |
nothing calls this directly
no outgoing calls
no test coverage detected