ProGamerGov / neural-style-pt

PyTorch implementation of neural style transfer algorithm
MIT License
838 stars 175 forks source link

Is pytorch actually required? #75

Closed jcklpe closed 4 years ago

jcklpe commented 4 years ago

I see that pytorch is listed as a dep, but when I created this Google Collaboratory notebook, I can run the neural network just fine without actually installing the pytorch. Is there something I'm missing? Perhaps the neural-style-pt install file takes care of that?

ProGamerGov commented 4 years ago

@jcklpe Google Colab has PyTorch (Torch and Torchvision) already preinstalled. You can verify this by running the following code in a cell:

import torch
print(torch.__version__)
jcklpe commented 4 years ago

@ProGamerGov  awesome, thanks!