9 lines
218 B
Python
9 lines
218 B
Python
from mflux.dreambooth.dataset.batch import Example
|
|
|
|
|
|
class DreamBoothPreProcessing:
|
|
@staticmethod
|
|
def augment(example: Example) -> list[Example]:
|
|
# Currently this does nothing.
|
|
return [example]
|