google / compare_gan

Compare GAN code.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

windows compitability error in gilbo.py

eyaler opened this issue · comments

in gilbo.py change:

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

to

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

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 ""?