aigc-apps/sd-webui-EasyPhoto

Question regarding Training

Dioskurides opened this issue · 3 comments

Hey, i noticed that that the "train" folder in C:\StableDiffusion\stable-diffusion-webui\outputs\easyphoto-user-id-infos\Rouven\processed_images\train only contains 15 image even tho i uploaded 35 for training is there a way to change this?

kind regards

search 15 or 14 in preprocess, we will do some cluster and filter top15 images for training, you can fix it by your own.

@Dioskurides line mark

indexes = np.argsort(total_scores)[::-1][:15]

Thank you!