Alex J. Champandard

Results 66 comments of Alex J. Champandard

The differences come down to the two core algorithms: gram-based (as this version) works well for more creative or painted styles, and patch-based (as original) works quite well for higher...

I traced this down to `Synchronizer` class that likely should throw a more specific error when something is attempted that doesn't work with this implementation: ``` def await(self, *expected_methods): fut...

I haven't worked on multi-GPU for this code yet. If you're willing to sacrifice some quality, then splitting up the image and running multiple critics in parallel on different tiles...

It's good to know the CPU results are identical, that rules out issues & bugs directly in this library ;-) It's not clear to me what is causing the non-determinism...

The interpolation would not be deterministic anyway, as soon as you change the content of the starting tensor, it would introduce different numbers and hence instability. https://arxiv.org/abs/1705.02092v1 As for larger...

Awesome PR! Couple of things: - Can you make this PR again with mostly unchanged whitespace (instead of converting to tabs). It's hard to read the diff this way. -...

Feel free to add the feature and make a pull request! I won't have the time to do this one myself.

Great idea! I can see what you intend this for, it's useful. You're right this will need more review, so I want to merge the 0.2 branch with some training...

Currently my focus is on making a new release that works reliably for all image types (with a variety of user options for models), but I've been thinking a lot...

I added plugin support to [cb55929]. It requires Python 3.5. You create file in `plugins/` and provide three functions to list the files, load the original image, and then the...