Pytorch-Tutorials icon indicating copy to clipboard operation
Pytorch-Tutorials copied to clipboard

Pytorch tutorials for Neural Style transfert

Results 5 Pytorch-Tutorials issues
Sort by recently updated
recently updated
newest added

Hello, cool work! I tried to use the `transforms.Normalize()` method instead of designing a `Normalization` class as you did ,but the loss seems not converging, is it unachievable to use`...

I am trying the tutorial for style transfer but getting this error. I have tried it with both Python 3.6 and 2.7. none of them worked ![image](https://user-images.githubusercontent.com/40613053/42948415-575737ce-8b67-11e8-9da0-3810aa60d6d0.png)

Hello, I have run the code in your Jupyter notebook but the result image after training does not look like the "style-transfer" image that you'd expect. Did I do anything...

Hi, In order to use vgg19, the following normalizing step has to be used: (Values of the input image being between 0 and 1) `normalize = transforms.Normalize(mean=[0.485, 0.456, 0.406], std=[0.229,...

I am wondering why style loss + style loss is returned in function closure(). Could you give an explanation?