Grzego / handwriting-generation

Implementation of handwriting generation with use of recurrent neural networks in tensorflow. Based on Alex Graves paper (https://arxiv.org/abs/1308.0850).
MIT License
531 stars 107 forks source link

No animation seen on mac #11

Open ishandutta2007 opened 5 years ago

ishandutta2007 commented 5 years ago

I see no difference, irrespective of wheather option --animation is given or not. Generative for pretrained model. My python version is 3.4.2 My OS-X version is 1.13.6

ishandutta2007 commented 5 years ago

Went through the code . Found the issue(not reason yet though) Firstly the first plot which renders is the static one with or without info based on whatever option you give(line 161-206). On closing that window the animated plot was supposed to render. But it is not rendering on mac for the frameon=False (line 209), reverting it to frameon=True(default) solved the issue.

Keeping the issue open until I figure out why hiding frame is breaking the code.