Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Following instructions in README.md to train a GAN does nothing #27

Open
bisraelsen opened this issue Sep 27, 2022 · 0 comments
Open

Following instructions in README.md to train a GAN does nothing #27

bisraelsen opened this issue Sep 27, 2022 · 0 comments

Comments

@bisraelsen
Copy link

Describe the bug
Trying to follow the README.md and code does nothing.

To Reproduce
Steps to reproduce the behavior:

  1. Follow README.md instructions to train GANs

python3 -m awesome_gans.acgan

  1. Nothing happens

Expected behavior
GAN should train

Additional context
This isn't entirely unexpected since the code for awesome_gans.acgan (i.e. acgan/__main__.py) is essentially blank as shown below. I'm wondering if this ever worked, or if something is very out of date.

from awesome_gans.config import parse_args
from awesome_gans.utils import set_seed

def main():
    config = parse_args()

    set_seed(config.seed)

    if config.mode == 'train':
        pass
    elif config.mode == 'inference':
        pass
    else:
        raise ValueError()


main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant