Nikolai10 / scrabble-gan

TensorFlow implementation of ScrabbleGAN (ScrabbleGAN: Semi-Supervised Varying Length Handwritten Text Generation, CVPR 2020)
MIT License
60 stars 22 forks source link

How to generate the words provided? #6

Closed chatgptcoderhere closed 3 years ago

chatgptcoderhere commented 3 years ago

After mian.py file is run for training to be completed, which file should be run for generating the output of the provided word list. In short, how to use save model variables for handwriting generation of specific words?

Nikolai10 commented 3 years ago

Hello @DeccanKing1,

I have added an example script - please have a look at src/run_inference.py.

After successfully running the script you should get something similar to: sample

chatgptcoderhere commented 3 years ago

Thank you.