(self)
| 18 | """Basic class for any experiment.""" |
| 19 | |
| 20 | def __init__(self): |
| 21 | self.seed = None |
| 22 | self.output_dir = "./YOLOX_outputs" |
| 23 | self.print_interval = 100 |
| 24 | self.eval_interval = 10 |
| 25 | |
| 26 | @abstractmethod |
| 27 | def get_model(self) -> Module: |
nothing calls this directly
no outgoing calls
no test coverage detected