You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Trying to follow the README.md and code does nothing.
To Reproduce
Steps to reproduce the behavior:
Follow README.md instructions to train GANs
python3 -m awesome_gans.acgan
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()
The text was updated successfully, but these errors were encountered:
Describe the bug
Trying to follow the
README.md
and code does nothing.To Reproduce
Steps to reproduce the behavior:
README.md
instructions to train GANsExpected 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.The text was updated successfully, but these errors were encountered: