Anders Boesen Lindbo Larsen

Results 110 comments of Anders Boesen Lindbo Larsen

Good to hear! I think the noise level is an interesting knob to turn during experiments. :) I believe the border artifacts occur when the image dimensions are not a...

Your target and source image should have the same dimensions, right? These dimensions should be a multiple of 32 to minimize border artefacts. I don't think you need to ensure...

Hi there! Can you try to change [this line](https://github.com/andersbll/cudarray/blob/master/setup.py#L36) from ``` extra_compile_args = ['-O3', '-fPIC', '-Wall', '-Wfatal-errors'] ``` to ``` extra_compile_args = ['-O3', '-fPIC', '-Wall'] ``` You can also try...

Hi. You can use [pickle](https://docs.python.org/2/library/pickle.html) to save networks. :)

If I have understood you correctly, you want to reuse a drawn image to draw other images faster. This is not possible as the algorithm starts drawing each image from...

Hi! Thanks for the nice writeup, I wish I could reproduce the error myself. I think you are right @neuralisator, this does not look like an out-of-memory problem. Is [this](https://github.com/andersbll/neural_artistic_style/issues/21#issuecomment-220683869)...

Regarding speed, maybe the other implementation are using a different optimization method. The original paper uses L-BFGS as far as I remememer. It is a bit heavy compared to first-order...

Thanks, can you try to install Anaconda Python and use that instead?

Hooray, I'm glad to hear that! What version of the package Cython is your old Python installation using? Could you try updating that to the latest and see if it...

Ok, thanks for the thorough description. I might try to use some other Python installations and see if I can reproduce the error. Just to be sure, you are using...