this post was submitted on 31 Oct 2023
1 points (100.0% liked)

Machine Learning

1 readers
1 users here now

Community Rules:

founded 1 year ago
MODERATORS
 

I have an assignment where we have to use DCGAN to generate images of a bus. But the dataset they have given, on purpose has very less images (108) and the images also have very low light (taken at night). I tried to train using a very simple architecture, but even after 1000 epochs, the images are not meaningful. What can I do to increase the lighting, and what type of data augmentation technique should I use?

The dataset given to me

top 2 comments
sorted by: hot top controversial new old
[โ€“] Infamous-Bank-7739@alien.top 1 points 1 year ago (1 children)

Note that 108 is a very small set. Considering transfering a pre-learned net or other means.

But to answer your question: I've had good success with DiffAug. It's quite straightforward to implement as well. ADA is another popular one that is bit more complex.

interesting, thanks