John Ohno

Results 113 comments of John Ohno

Image comparisons: https://github.com/enkiv2/misc/blob/master/nanogenmo-2017/denpa-onna-to-seishun-otoko-comparison.png https://github.com/enkiv2/misc/blob/master/nanogenmo-2017/PrinceofDarkness-comparison.png

Now I have some panel layout logic: https://github.com/enkiv2/misc/blob/master/nanogenmo-2017/panel_layout.py Basically, I align to a bounding box on the top-left, resize (keeping aspect ratio) to fit inside, and if the image is...

Completed 101-page comic: https://github.com/enkiv2/misc/blob/master/nanogenmo-2017/comic.pdf

Reader review: "It feels like someone injected laundry detergent into my eyes and forced me to scroll through Google Image Search"

Generative Detective, from a couple years ago, was a lot more choosy about both text & images in ways that almost required a human in the loop. But, I think...

I wrote up an extensive post-mortem on this project here: https://medium.com/@enkiv2/fiction-generator-post-mortem-comic-book-generation-9df847dd4ada

Wow, this looks a lot better than I expected (from my experiments with style transfer using word2vec). What mechanisms are you using? On Thu, Nov 1, 2018 at 10:10 PM...

file.readlines() currently uses an iterator (in other words, it's equivalent to the old xreadlines()), so if you can fit your whole per-pass logic in a 'for x in y.readlines()' block,...

> we recursively run that sub-query By doing this, you have implemented rules (modulo the problem of re-ordering parameter lists). If you've got well-defined finite domains (like, for instance, word...

Yeah, renaming variables. (Sorry -- when I implemented this, rather than keeping a symbol list, I made a map of positions in parameter lists versus a local stack, since symbols...