You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[](https://colab.research.google.com/github/yandexdataschool/Practical_DL/blob/spring20/seminar06-style-transfer/style_transfer_pytorch.ipynb)
2
+
3
+
4
+
5
+
`to be used in seminar`
6
+
7
+
```(python)
8
+
import multiprocessing as mp
9
+
import multiprocessing.shared_memory
10
+
import numpy as np
11
+
import torch
12
+
from pytorch_pretrained_biggan import BigGAN
13
+
import matplotlib.pyplot as plt
14
+
%matplotlib inline
15
+
model = BigGAN.from_pretrained('biggan-deep-128').cuda().eval()
0 commit comments