Qwen-Image-Layered-MRP-MLX/src/mflux/dreambooth/dataset/dreambooth_preprocessing.py
2024-12-22 19:42:37 +01:00

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]