Run the bundle workflow, it can be a training, evaluation or inference.
(self, *args: Any, **kwargs: Any)
| 146 | |
| 147 | @abstractmethod |
| 148 | def run(self, *args: Any, **kwargs: Any) -> Any: |
| 149 | """ |
| 150 | Run the bundle workflow, it can be a training, evaluation or inference. |
| 151 | |
| 152 | """ |
| 153 | raise NotImplementedError() |
| 154 | |
| 155 | @abstractmethod |
| 156 | def finalize(self, *args: Any, **kwargs: Any) -> Any: |
no outgoing calls
no test coverage detected