-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlosses.py
66 lines (47 loc) · 2.35 KB
/
losses.py
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import tensorflow as tf
import pdb
def l1_loss(y_true, y_pred):
return tf.reduce_mean(tf.abs(tf.cast(y_true,tf.float32) - tf.cast(y_pred, tf.float32)))
def l1_loss_weighted(y_true, y_pred, mask_true):
masked_true = tf.multiply(y_true, mask_true)
makes_pred = tf.multiply(y_pred, mask_true)
l1 = tf.abs(tf.cast(masked_true,tf.float32) - tf.cast(makes_pred, tf.float32)) #[n,256,256,1]
masked_mse = tf.reduce_sum(l1, axis=[1,2,3]) /tf.math.maximum(tf.reduce_sum(mask_true, axis=[1,2,3]), 1)
return tf.reduce_mean(masked_mse)
def l2_loss(y_true, y_pred):
return tf.reduce_mean(tf.square(tf.abs(tf.cast(y_true,tf.float32) - tf.cast(y_pred, tf.float32))))
def smooth_loss(mat):
return tf.reduce_sum(tf.abs(mat[:, :, :-1, :] - mat[:, :, 1:, :])) + \
tf.reduce_sum(tf.abs(mat[:, :-1, :, :] - mat[:, 1:, :, :]))
def classification_loss(logit, label):
loss = tf.reduce_mean(tf.nn.sigmoid_cross_entropy_with_logits(labels=label, logits=logit))
return loss
def generator_loss(loss_func, fake):
fake_loss = 0
if loss_func.__contains__('wgan') :
fake_loss = -tf.reduce_mean(fake)
if loss_func == 'lsgan' :
fake_loss = tf.reduce_mean(tf.squared_difference(fake, 1.0))
if loss_func == 'gan' or loss_func == 'dragan' :
fake_loss = tf.reduce_mean(tf.nn.sigmoid_cross_entropy_with_logits(labels=tf.ones_like(fake), logits=fake))
if loss_func == 'hinge' :
fake_loss = -tf.reduce_mean(fake)
loss = fake_loss
return loss
def discriminator_loss(loss_func, real, fake):
real_loss = 0
fake_loss = 0
if loss_func.__contains__('wgan') :
real_loss = -tf.reduce_mean(real)
fake_loss = tf.reduce_mean(fake)
if loss_func == 'lsgan' :
real_loss = tf.reduce_mean(tf.squared_difference(real, 1.0))
fake_loss = tf.reduce_mean(tf.square(fake))
if loss_func == 'gan' or loss_func == 'dragan' :
real_loss = tf.reduce_mean(tf.nn.sigmoid_cross_entropy_with_logits(labels=tf.ones_like(real), logits=real))
fake_loss = tf.reduce_mean(tf.nn.sigmoid_cross_entropy_with_logits(labels=tf.zeros_like(fake), logits=fake))
if loss_func == 'hinge' :
real_loss = -tf.reduce_mean(tf.minimum(0., -1.0 + real))
fake_loss = -tf.reduce_mean(tf.minimum(0., -1.0 - fake))
loss = real_loss + fake_loss
return loss