ProGamerGov

Results 515 comments of ProGamerGov

**NIN-Imagenet Model Tests (`nin_imagenet_conv.caffemodel`):** * The layer combinations used for both NIN tests, were: `-content_layers relu1,relu2,relu3,relu5,relu6,relu7 -style_layers relu1,relu2,relu3,relu5,relu6,relu7` **The GPU usage for the above examples with an `-image_size` of 1024...

@jcjohnson The default Adam parameters do not appear to be stable with some kinds of style images. These new parameter values seem to be stable with every style image that...

So what the limitations of your idea here? Is the image size limited to 256 like it is in [CycleGAN](https://github.com/junyanz/CycleGAN)? Do we need a thousand image dataset and pretrained CycleGAN...

@linrio Adam appears to use bad parameters by default in Neural-Style. If you modify the Adam specific parameters, you can make Adam a lot more compatible with L-BFGS. You can...

I've been running CUDA Version 9.0.176 for a while now without issue. I did run into some installation issues which were solved by disabling the half operators (also improve memory...

@subzerofun Whats terminal output in relation to the error? It looks like I might have solved the issue like this according my `.bash_history`: ``` cd torch ./clean.sh bash install-deps; ./install.sh...

@subzerofun Unfortunately I don't know a whole lot about Torch itself or cutorch. So I wouldn't know where to start in regards to your issue.

@LouiValley As per the name, CycleGAN is a generative adversarial network (GAN) style transfer system. Neural-Style is a convolutional neural network (CNN) based style transfer system. CycleGAN is also not...

I have found a working method to crop the image into over lapping crops! This was done on Ubuntu 14.04.4: First we need to install the software and it's dependencies:...

@s-a Did you follow the guide on the Neural-Style wiki? The way how you keep the tiles from being random, is you run your image through neural-style first before you...