-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathidentity_loss.py
More file actions
25 lines (21 loc) · 805 Bytes
/
identity_loss.py
File metadata and controls
25 lines (21 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Tue Aug 9 16:05:19 2022
@author: ahmedemam576
"""
from gan_loss_term import Gan_loss_term
class Identity_Loss(Gan_loss_term):
def __init__ (self, real_x, generator, discriminator, name):
super(Identity_Loss,self).__init__(real_x, generator, discriminator, name)
'''
the class should inheret all his attributes from the Gan_loss_term
so we shouldn't set each attribute to .self
this loss should be used two time for opposite generators'
'''
print(f'{self.name}is initiated')
def __call__(self):
gen_y_to_x = self.generator
iden_x= gen_y_to_x(self.real_x)
id_loss = self.norm(iden_x, self.real_x)
return id_loss, iden_x