google / compare_gan

Compare GAN code.
Apache License 2.0
1.82k stars 317 forks source link

windows compitability error in gilbo.py #14

Closed eyaler closed 5 years ago

eyaler commented 5 years ago

in gilbo.py change:

outdir = os.path.join(outdir, checkpointpath.replace('/', ''))

to

outdir = os.path.join(outdir, checkpointpath.replace('/', '').replace('\', '_'))

Marvin182 commented 5 years ago

Thank you. I think GILBO does not work in the new version. If you send a pull request for v2 I can merge it. To support GILBO in the new version please contact Ian Fischer.

Why do you change "_" to ""?