diegoalejogm / gans

Generative Adversarial Networks implemented in PyTorch and Tensorflow
MIT License
824 stars 352 forks source link

Using own training set #6

Closed ghost closed 3 years ago

ghost commented 5 years ago

Can you train both the Vanilla and the DCN networks with your own data set or some data set like ImageNet for example. and If so how would you do it? for both Pytorch and Tensorflow.

HamzahNizami commented 5 years ago

any luck with this?

mselimata commented 5 years ago

Use data loaders for pytorch, and costumize them accordingly (for example change image size according to your dataset) Data loaders example:https://pytorch.org/tutorials/beginner/data_loading_tutorial.html

diegoalejogm commented 3 years ago

Hi, @i-am-mel-dev is correct. You can create a new loader to put the data in!