Newmu / dcgan_code

Deep Convolutional Generative Adversarial Networks
MIT License
3.42k stars 696 forks source link

There is no source code. #2

Closed gcr closed 8 years ago

gcr commented 8 years ago

Bug: There is no source code for the model.

Expected Result: For source code to be released, since the project is titled dgcan_code :)

How to reproduce:

michael@halifax ~> git clone https://github.com/Newmu/dcgan_code
Cloning into 'dcgan_code'...
remote: Counting objects: 46, done.
remote: Compressing objects: 100% (39/39), done.
remote: Total 46 (delta 5), reused 45 (delta 4), pack-reused 0
Unpacking objects: 100% (46/46), done.
Checking connectivity... done.
michael@halifax ~> cd dcgan_code/
michael@halifax ~/dcgan_code> find . -iname '*.lua' | wc -l
       0

Is there a schedule to release any code? Many thanks.

dribnet commented 8 years ago

@gcr - try running the following:

while true; do bash -c "git pull origin && find . -iname '*.lua' -iname '*.py' | wc -l"; sleep 60; done

I'm pretty sure if you run that overnight it will take care of itself.

Newmu commented 8 years ago

I just got off work for the day - am moving/cleaning/committing through the night :)

Newmu commented 8 years ago

The core lib/utils used in all training code is now public as well as an example training the conditional mnist model from the appendix with c7e43bdddc846df35766275861141ef12ff9e14e. More examples will be added in the coming days/long weekend as we figure out etl code and data sharing/access for the bigger image datasets.