Изменения

Перейти к: навигация, поиск

Neural Style Transfer

526 байт добавлено, 06:12, 17 апреля 2019
Нет описания правки
[[Файл:Image10.jpeg|500px|center]]
 
== Пример кода на PyTorch ==
 
class ContentLoss(nn.Module):
 
def __init__(self, target,):
super(ContentLoss, self).__init__()
# we 'detach' the target content from the tree used
# to dynamically compute the gradient: this is a stated value,
# not a variable. Otherwise the forward method of the criterion
# will throw an error.
self.target = target.detach()
 
def forward(self, input):
self.loss = F.mse_loss(input, self.target)
return input
147
правок

Навигация