(self, logger=None)
| 14 | |
| 15 | class ACEPlusDiffuserInference(): |
| 16 | def __init__(self, logger=None): |
| 17 | if logger is None: |
| 18 | logger = get_logger(name='ace_plus') |
| 19 | self.logger = logger |
| 20 | self.input = {} |
| 21 | |
| 22 | def load_default(self, cfg): |
| 23 | if cfg is not None: |
nothing calls this directly
no outgoing calls
no test coverage detected