Display Configuration values.
(self)
| 164 | for stride in self.BACKBONE_STRIDES]) |
| 165 | |
| 166 | def display(self): |
| 167 | """Display Configuration values.""" |
| 168 | print("\nConfigurations:") |
| 169 | for a in dir(self): |
| 170 | if not a.startswith("__") and not callable(getattr(self, a)): |
| 171 | print("{:30} {}".format(a, getattr(self, a))) |
| 172 | print("\n") |
no outgoing calls
no test coverage detected