| 51 | |
| 52 | |
| 53 | class PlusPlusInput: |
| 54 | def __init__(self, image: Tensor, control_type: str, strength: float): |
| 55 | self.image = image |
| 56 | self.control_type = control_type |
| 57 | self.strength = strength |
| 58 | |
| 59 | def clone(self): |
| 60 | return PlusPlusInput(self.image, self.control_type, self.strength) |
| 61 | |
| 62 | |
| 63 | class PlusPlusInputGroup: |
no outgoing calls
no test coverage detected