mirror of
https://github.com/Estom/notes.git
synced 2026-04-05 11:57:37 +08:00
703 lines
23 KiB
Markdown
703 lines
23 KiB
Markdown
# Pix2Pix
|
|
|
|
> 原文:[https://tensorflow.google.cn/tutorials/generative/pix2pix](https://tensorflow.google.cn/tutorials/generative/pix2pix)
|
|
|
|
This notebook demonstrates image to image translation using conditional GAN's, as described in [Image-to-Image Translation with Conditional Adversarial Networks](https://arxiv.org/abs/1611.07004). Using this technique we can colorize black and white photos, convert google maps to google earth, etc. Here, we convert building facades to real buildings.
|
|
|
|
In example, we will use the [CMP Facade Database](http://cmp.felk.cvut.cz/%7Etylecr1/facade/), helpfully provided by the [Center for Machine Perception](http://cmp.felk.cvut.cz/) at the [Czech Technical University in Prague](https://www.cvut.cz/). To keep our example short, we will use a preprocessed [copy](https://people.eecs.berkeley.edu/%7Etinghuiz/projects/pix2pix/datasets/) of this dataset, created by the authors of the [paper](https://arxiv.org/abs/1611.07004) above.
|
|
|
|
Each epoch takes around 15 seconds on a single V100 GPU.
|
|
|
|
Below is the output generated after training the model for 200 epochs.
|
|
|
|
 
|
|
|
|
## Import TensorFlow and other libraries
|
|
|
|
```py
|
|
import tensorflow as tf
|
|
|
|
import os
|
|
import time
|
|
|
|
from matplotlib import pyplot as plt
|
|
from IPython import display
|
|
```
|
|
|
|
```py
|
|
pip install -q -U tensorboard
|
|
|
|
```
|
|
|
|
```py
|
|
WARNING: You are using pip version 20.2.2; however, version 20.2.3 is available.
|
|
You should consider upgrading via the '/tmpfs/src/tf_docs_env/bin/python -m pip install --upgrade pip' command.
|
|
|
|
```
|
|
|
|
## Load the dataset
|
|
|
|
You can download this dataset and similar datasets from [here](https://people.eecs.berkeley.edu/%7Etinghuiz/projects/pix2pix/datasets). As mentioned in the [paper](https://arxiv.org/abs/1611.07004) we apply random jittering and mirroring to the training dataset.
|
|
|
|
* In random jittering, the image is resized to `286 x 286` and then randomly cropped to `256 x 256`
|
|
* In random mirroring, the image is randomly flipped horizontally i.e left to right.
|
|
|
|
```py
|
|
_URL = 'https://people.eecs.berkeley.edu/~tinghuiz/projects/pix2pix/datasets/facades.tar.gz'
|
|
|
|
path_to_zip = tf.keras.utils.get_file('facades.tar.gz',
|
|
origin=_URL,
|
|
extract=True)
|
|
|
|
PATH = os.path.join(os.path.dirname(path_to_zip), 'facades/')
|
|
```
|
|
|
|
```py
|
|
Downloading data from https://people.eecs.berkeley.edu/~tinghuiz/projects/pix2pix/datasets/facades.tar.gz
|
|
30171136/30168306 [==============================] - 2s 0us/step
|
|
|
|
```
|
|
|
|
```py
|
|
BUFFER_SIZE = 400
|
|
BATCH_SIZE = 1
|
|
IMG_WIDTH = 256
|
|
IMG_HEIGHT = 256
|
|
```
|
|
|
|
```py
|
|
def load(image_file):
|
|
image = tf.io.read_file(image_file)
|
|
image = tf.image.decode_jpeg(image)
|
|
|
|
w = tf.shape(image)[1]
|
|
|
|
w = w // 2
|
|
real_image = image[:, :w, :]
|
|
input_image = image[:, w:, :]
|
|
|
|
input_image = tf.cast(input_image, tf.float32)
|
|
real_image = tf.cast(real_image, tf.float32)
|
|
|
|
return input_image, real_image
|
|
```
|
|
|
|
```py
|
|
inp, re = load(PATH+'train/100.jpg')
|
|
# casting to int for matplotlib to show the image
|
|
plt.figure()
|
|
plt.imshow(inp/255.0)
|
|
plt.figure()
|
|
plt.imshow(re/255.0)
|
|
```
|
|
|
|
```py
|
|
<matplotlib.image.AxesImage at 0x7f5576b28550>
|
|
|
|
```
|
|
|
|

|
|
|
|

|
|
|
|
```py
|
|
def resize(input_image, real_image, height, width):
|
|
input_image = tf.image.resize(input_image, [height, width],
|
|
method=tf.image.ResizeMethod.NEAREST_NEIGHBOR)
|
|
real_image = tf.image.resize(real_image, [height, width],
|
|
method=tf.image.ResizeMethod.NEAREST_NEIGHBOR)
|
|
|
|
return input_image, real_image
|
|
```
|
|
|
|
```py
|
|
def random_crop(input_image, real_image):
|
|
stacked_image = tf.stack([input_image, real_image], axis=0)
|
|
cropped_image = tf.image.random_crop(
|
|
stacked_image, size=[2, IMG_HEIGHT, IMG_WIDTH, 3])
|
|
|
|
return cropped_image[0], cropped_image[1]
|
|
```
|
|
|
|
```py
|
|
# normalizing the images to [-1, 1]
|
|
|
|
def normalize(input_image, real_image):
|
|
input_image = (input_image / 127.5) - 1
|
|
real_image = (real_image / 127.5) - 1
|
|
|
|
return input_image, real_image
|
|
```
|
|
|
|
```py
|
|
@tf.function()
|
|
def random_jitter(input_image, real_image):
|
|
# resizing to 286 x 286 x 3
|
|
input_image, real_image = resize(input_image, real_image, 286, 286)
|
|
|
|
# randomly cropping to 256 x 256 x 3
|
|
input_image, real_image = random_crop(input_image, real_image)
|
|
|
|
if tf.random.uniform(()) > 0.5:
|
|
# random mirroring
|
|
input_image = tf.image.flip_left_right(input_image)
|
|
real_image = tf.image.flip_left_right(real_image)
|
|
|
|
return input_image, real_image
|
|
```
|
|
|
|
As you can see in the images below that they are going through random jittering Random jittering as described in the paper is to
|
|
|
|
1. Resize an image to bigger height and width
|
|
2. Randomly crop to the target size
|
|
3. Randomly flip the image horizontally
|
|
|
|
```py
|
|
plt.figure(figsize=(6, 6))
|
|
for i in range(4):
|
|
rj_inp, rj_re = random_jitter(inp, re)
|
|
plt.subplot(2, 2, i+1)
|
|
plt.imshow(rj_inp/255.0)
|
|
plt.axis('off')
|
|
plt.show()
|
|
```
|
|
|
|

|
|
|
|
```py
|
|
def load_image_train(image_file):
|
|
input_image, real_image = load(image_file)
|
|
input_image, real_image = random_jitter(input_image, real_image)
|
|
input_image, real_image = normalize(input_image, real_image)
|
|
|
|
return input_image, real_image
|
|
```
|
|
|
|
```py
|
|
def load_image_test(image_file):
|
|
input_image, real_image = load(image_file)
|
|
input_image, real_image = resize(input_image, real_image,
|
|
IMG_HEIGHT, IMG_WIDTH)
|
|
input_image, real_image = normalize(input_image, real_image)
|
|
|
|
return input_image, real_image
|
|
```
|
|
|
|
## Input Pipeline
|
|
|
|
```py
|
|
train_dataset = tf.data.Dataset.list_files(PATH+'train/*.jpg')
|
|
train_dataset = train_dataset.map(load_image_train,
|
|
num_parallel_calls=tf.data.experimental.AUTOTUNE)
|
|
train_dataset = train_dataset.shuffle(BUFFER_SIZE)
|
|
train_dataset = train_dataset.batch(BATCH_SIZE)
|
|
```
|
|
|
|
```py
|
|
test_dataset = tf.data.Dataset.list_files(PATH+'test/*.jpg')
|
|
test_dataset = test_dataset.map(load_image_test)
|
|
test_dataset = test_dataset.batch(BATCH_SIZE)
|
|
```
|
|
|
|
## Build the Generator
|
|
|
|
* The architecture of generator is a modified U-Net.
|
|
* Each block in the encoder is (Conv -> Batchnorm -> Leaky ReLU)
|
|
* Each block in the decoder is (Transposed Conv -> Batchnorm -> Dropout(applied to the first 3 blocks) -> ReLU)
|
|
* There are skip connections between the encoder and decoder (as in U-Net).
|
|
|
|
```py
|
|
OUTPUT_CHANNELS = 3
|
|
```
|
|
|
|
```py
|
|
def downsample(filters, size, apply_batchnorm=True):
|
|
initializer = tf.random_normal_initializer(0., 0.02)
|
|
|
|
result = tf.keras.Sequential()
|
|
result.add(
|
|
tf.keras.layers.Conv2D(filters, size, strides=2, padding='same',
|
|
kernel_initializer=initializer, use_bias=False))
|
|
|
|
if apply_batchnorm:
|
|
result.add(tf.keras.layers.BatchNormalization())
|
|
|
|
result.add(tf.keras.layers.LeakyReLU())
|
|
|
|
return result
|
|
```
|
|
|
|
```py
|
|
down_model = downsample(3, 4)
|
|
down_result = down_model(tf.expand_dims(inp, 0))
|
|
print (down_result.shape)
|
|
```
|
|
|
|
```py
|
|
(1, 128, 128, 3)
|
|
|
|
```
|
|
|
|
```py
|
|
def upsample(filters, size, apply_dropout=False):
|
|
initializer = tf.random_normal_initializer(0., 0.02)
|
|
|
|
result = tf.keras.Sequential()
|
|
result.add(
|
|
tf.keras.layers.Conv2DTranspose(filters, size, strides=2,
|
|
padding='same',
|
|
kernel_initializer=initializer,
|
|
use_bias=False))
|
|
|
|
result.add(tf.keras.layers.BatchNormalization())
|
|
|
|
if apply_dropout:
|
|
result.add(tf.keras.layers.Dropout(0.5))
|
|
|
|
result.add(tf.keras.layers.ReLU())
|
|
|
|
return result
|
|
```
|
|
|
|
```py
|
|
up_model = upsample(3, 4)
|
|
up_result = up_model(down_result)
|
|
print (up_result.shape)
|
|
```
|
|
|
|
```py
|
|
(1, 256, 256, 3)
|
|
|
|
```
|
|
|
|
```py
|
|
def Generator():
|
|
inputs = tf.keras.layers.Input(shape=[256,256,3])
|
|
|
|
down_stack = [
|
|
downsample(64, 4, apply_batchnorm=False), # (bs, 128, 128, 64)
|
|
downsample(128, 4), # (bs, 64, 64, 128)
|
|
downsample(256, 4), # (bs, 32, 32, 256)
|
|
downsample(512, 4), # (bs, 16, 16, 512)
|
|
downsample(512, 4), # (bs, 8, 8, 512)
|
|
downsample(512, 4), # (bs, 4, 4, 512)
|
|
downsample(512, 4), # (bs, 2, 2, 512)
|
|
downsample(512, 4), # (bs, 1, 1, 512)
|
|
]
|
|
|
|
up_stack = [
|
|
upsample(512, 4, apply_dropout=True), # (bs, 2, 2, 1024)
|
|
upsample(512, 4, apply_dropout=True), # (bs, 4, 4, 1024)
|
|
upsample(512, 4, apply_dropout=True), # (bs, 8, 8, 1024)
|
|
upsample(512, 4), # (bs, 16, 16, 1024)
|
|
upsample(256, 4), # (bs, 32, 32, 512)
|
|
upsample(128, 4), # (bs, 64, 64, 256)
|
|
upsample(64, 4), # (bs, 128, 128, 128)
|
|
]
|
|
|
|
initializer = tf.random_normal_initializer(0., 0.02)
|
|
last = tf.keras.layers.Conv2DTranspose(OUTPUT_CHANNELS, 4,
|
|
strides=2,
|
|
padding='same',
|
|
kernel_initializer=initializer,
|
|
activation='tanh') # (bs, 256, 256, 3)
|
|
|
|
x = inputs
|
|
|
|
# Downsampling through the model
|
|
skips = []
|
|
for down in down_stack:
|
|
x = down(x)
|
|
skips.append(x)
|
|
|
|
skips = reversed(skips[:-1])
|
|
|
|
# Upsampling and establishing the skip connections
|
|
for up, skip in zip(up_stack, skips):
|
|
x = up(x)
|
|
x = tf.keras.layers.Concatenate()([x, skip])
|
|
|
|
x = last(x)
|
|
|
|
return tf.keras.Model(inputs=inputs, outputs=x)
|
|
```
|
|
|
|
```py
|
|
generator = Generator()
|
|
tf.keras.utils.plot_model(generator, show_shapes=True, dpi=64)
|
|
```
|
|
|
|

|
|
|
|
```py
|
|
gen_output = generator(inp[tf.newaxis,...], training=False)
|
|
plt.imshow(gen_output[0,...])
|
|
```
|
|
|
|
```py
|
|
Clipping input data to the valid range for imshow with RGB data ([0..1] for floats or [0..255] for integers).
|
|
|
|
<matplotlib.image.AxesImage at 0x7f54c85167b8>
|
|
|
|
```
|
|
|
|

|
|
|
|
* **Generator loss**
|
|
* It is a sigmoid cross entropy loss of the generated images and an **array of ones**.
|
|
* The [paper](https://arxiv.org/abs/1611.07004) also includes L1 loss which is MAE (mean absolute error) between the generated image and the target image.
|
|
* This allows the generated image to become structurally similar to the target image.
|
|
* The formula to calculate the total generator loss = gan_loss + LAMBDA * l1_loss, where LAMBDA = 100\. This value was decided by the authors of the [paper](https://arxiv.org/abs/1611.07004).
|
|
|
|
The training procedure for the generator is shown below:
|
|
|
|
```py
|
|
LAMBDA = 100
|
|
```
|
|
|
|
```py
|
|
def generator_loss(disc_generated_output, gen_output, target):
|
|
gan_loss = loss_object(tf.ones_like(disc_generated_output), disc_generated_output)
|
|
|
|
# mean absolute error
|
|
l1_loss = tf.reduce_mean(tf.abs(target - gen_output))
|
|
|
|
total_gen_loss = gan_loss + (LAMBDA * l1_loss)
|
|
|
|
return total_gen_loss, gan_loss, l1_loss
|
|
```
|
|
|
|

|
|
|
|
## Build the Discriminator
|
|
|
|
* The Discriminator is a PatchGAN.
|
|
* Each block in the discriminator is (Conv -> BatchNorm -> Leaky ReLU)
|
|
* The shape of the output after the last layer is (batch_size, 30, 30, 1)
|
|
* Each 30x30 patch of the output classifies a 70x70 portion of the input image (such an architecture is called a PatchGAN).
|
|
* Discriminator receives 2 inputs.
|
|
* Input image and the target image, which it should classify as real.
|
|
* Input image and the generated image (output of generator), which it should classify as fake.
|
|
* We concatenate these 2 inputs together in the code (`tf.concat([inp, tar], axis=-1)`)
|
|
|
|
```py
|
|
def Discriminator():
|
|
initializer = tf.random_normal_initializer(0., 0.02)
|
|
|
|
inp = tf.keras.layers.Input(shape=[256, 256, 3], name='input_image')
|
|
tar = tf.keras.layers.Input(shape=[256, 256, 3], name='target_image')
|
|
|
|
x = tf.keras.layers.concatenate([inp, tar]) # (bs, 256, 256, channels*2)
|
|
|
|
down1 = downsample(64, 4, False)(x) # (bs, 128, 128, 64)
|
|
down2 = downsample(128, 4)(down1) # (bs, 64, 64, 128)
|
|
down3 = downsample(256, 4)(down2) # (bs, 32, 32, 256)
|
|
|
|
zero_pad1 = tf.keras.layers.ZeroPadding2D()(down3) # (bs, 34, 34, 256)
|
|
conv = tf.keras.layers.Conv2D(512, 4, strides=1,
|
|
kernel_initializer=initializer,
|
|
use_bias=False)(zero_pad1) # (bs, 31, 31, 512)
|
|
|
|
batchnorm1 = tf.keras.layers.BatchNormalization()(conv)
|
|
|
|
leaky_relu = tf.keras.layers.LeakyReLU()(batchnorm1)
|
|
|
|
zero_pad2 = tf.keras.layers.ZeroPadding2D()(leaky_relu) # (bs, 33, 33, 512)
|
|
|
|
last = tf.keras.layers.Conv2D(1, 4, strides=1,
|
|
kernel_initializer=initializer)(zero_pad2) # (bs, 30, 30, 1)
|
|
|
|
return tf.keras.Model(inputs=[inp, tar], outputs=last)
|
|
```
|
|
|
|
```py
|
|
discriminator = Discriminator()
|
|
tf.keras.utils.plot_model(discriminator, show_shapes=True, dpi=64)
|
|
```
|
|
|
|

|
|
|
|
```py
|
|
disc_out = discriminator([inp[tf.newaxis,...], gen_output], training=False)
|
|
plt.imshow(disc_out[0,...,-1], vmin=-20, vmax=20, cmap='RdBu_r')
|
|
plt.colorbar()
|
|
```
|
|
|
|
```py
|
|
<matplotlib.colorbar.Colorbar at 0x7f54c83a3fd0>
|
|
|
|
```
|
|
|
|

|
|
|
|
**Discriminator loss**
|
|
|
|
* The discriminator loss function takes 2 inputs; **real images, generated images**
|
|
* real_loss is a sigmoid cross entropy loss of the **real images** and an **array of ones(since these are the real images)**
|
|
* generated_loss is a sigmoid cross entropy loss of the **generated images** and an **array of zeros(since these are the fake images)**
|
|
* Then the total_loss is the sum of real_loss and the generated_loss
|
|
|
|
```py
|
|
loss_object = tf.keras.losses.BinaryCrossentropy(from_logits=True)
|
|
```
|
|
|
|
```py
|
|
def discriminator_loss(disc_real_output, disc_generated_output):
|
|
real_loss = loss_object(tf.ones_like(disc_real_output), disc_real_output)
|
|
|
|
generated_loss = loss_object(tf.zeros_like(disc_generated_output), disc_generated_output)
|
|
|
|
total_disc_loss = real_loss + generated_loss
|
|
|
|
return total_disc_loss
|
|
```
|
|
|
|
The training procedure for the discriminator is shown below.
|
|
|
|
To learn more about the architecture and the hyperparameters you can refer the [paper](https://arxiv.org/abs/1611.07004).
|
|
|
|

|
|
|
|
## Define the Optimizers and Checkpoint-saver
|
|
|
|
```py
|
|
generator_optimizer = tf.keras.optimizers.Adam(2e-4, beta_1=0.5)
|
|
discriminator_optimizer = tf.keras.optimizers.Adam(2e-4, beta_1=0.5)
|
|
```
|
|
|
|
```py
|
|
checkpoint_dir = './training_checkpoints'
|
|
checkpoint_prefix = os.path.join(checkpoint_dir, "ckpt")
|
|
checkpoint = tf.train.Checkpoint(generator_optimizer=generator_optimizer,
|
|
discriminator_optimizer=discriminator_optimizer,
|
|
generator=generator,
|
|
discriminator=discriminator)
|
|
```
|
|
|
|
## Generate Images
|
|
|
|
Write a function to plot some images during training.
|
|
|
|
* We pass images from the test dataset to the generator.
|
|
* The generator will then translate the input image into the output.
|
|
* Last step is to plot the predictions and **voila!**
|
|
|
|
**Note:** The `training=True` is intentional here since we want the batch statistics while running the model on the test dataset. If we use training=False, we will get the accumulated statistics learned from the training dataset (which we don't want)
|
|
|
|
```py
|
|
def generate_images(model, test_input, tar):
|
|
prediction = model(test_input, training=True)
|
|
plt.figure(figsize=(15,15))
|
|
|
|
display_list = [test_input[0], tar[0], prediction[0]]
|
|
title = ['Input Image', 'Ground Truth', 'Predicted Image']
|
|
|
|
for i in range(3):
|
|
plt.subplot(1, 3, i+1)
|
|
plt.title(title[i])
|
|
# getting the pixel values between [0, 1] to plot it.
|
|
plt.imshow(display_list[i] * 0.5 + 0.5)
|
|
plt.axis('off')
|
|
plt.show()
|
|
```
|
|
|
|
```py
|
|
for example_input, example_target in test_dataset.take(1):
|
|
generate_images(generator, example_input, example_target)
|
|
```
|
|
|
|

|
|
|
|
## Training
|
|
|
|
* For each example input generate an output.
|
|
* The discriminator receives the input_image and the generated image as the first input. The second input is the input_image and the target_image.
|
|
* Next, we calculate the generator and the discriminator loss.
|
|
* Then, we calculate the gradients of loss with respect to both the generator and the discriminator variables(inputs) and apply those to the optimizer.
|
|
* Then log the losses to TensorBoard.
|
|
|
|
```py
|
|
EPOCHS = 150
|
|
```
|
|
|
|
```py
|
|
import datetime
|
|
log_dir="logs/"
|
|
|
|
summary_writer = tf.summary.create_file_writer(
|
|
log_dir + "fit/" + datetime.datetime.now().strftime("%Y%m%d-%H%M%S"))
|
|
```
|
|
|
|
```py
|
|
@tf.function
|
|
def train_step(input_image, target, epoch):
|
|
with tf.GradientTape() as gen_tape, tf.GradientTape() as disc_tape:
|
|
gen_output = generator(input_image, training=True)
|
|
|
|
disc_real_output = discriminator([input_image, target], training=True)
|
|
disc_generated_output = discriminator([input_image, gen_output], training=True)
|
|
|
|
gen_total_loss, gen_gan_loss, gen_l1_loss = generator_loss(disc_generated_output, gen_output, target)
|
|
disc_loss = discriminator_loss(disc_real_output, disc_generated_output)
|
|
|
|
generator_gradients = gen_tape.gradient(gen_total_loss,
|
|
generator.trainable_variables)
|
|
discriminator_gradients = disc_tape.gradient(disc_loss,
|
|
discriminator.trainable_variables)
|
|
|
|
generator_optimizer.apply_gradients(zip(generator_gradients,
|
|
generator.trainable_variables))
|
|
discriminator_optimizer.apply_gradients(zip(discriminator_gradients,
|
|
discriminator.trainable_variables))
|
|
|
|
with summary_writer.as_default():
|
|
tf.summary.scalar('gen_total_loss', gen_total_loss, step=epoch)
|
|
tf.summary.scalar('gen_gan_loss', gen_gan_loss, step=epoch)
|
|
tf.summary.scalar('gen_l1_loss', gen_l1_loss, step=epoch)
|
|
tf.summary.scalar('disc_loss', disc_loss, step=epoch)
|
|
```
|
|
|
|
The actual training loop:
|
|
|
|
* Iterates over the number of epochs.
|
|
* On each epoch it clears the display, and runs `generate_images` to show it's progress.
|
|
* On each epoch it iterates over the training dataset, printing a '.' for each example.
|
|
* It saves a checkpoint every 20 epochs.
|
|
|
|
```py
|
|
def fit(train_ds, epochs, test_ds):
|
|
for epoch in range(epochs):
|
|
start = time.time()
|
|
|
|
display.clear_output(wait=True)
|
|
|
|
for example_input, example_target in test_ds.take(1):
|
|
generate_images(generator, example_input, example_target)
|
|
print("Epoch: ", epoch)
|
|
|
|
# Train
|
|
for n, (input_image, target) in train_ds.enumerate():
|
|
print('.', end='')
|
|
if (n+1) % 100 == 0:
|
|
print()
|
|
train_step(input_image, target, epoch)
|
|
print()
|
|
|
|
# saving (checkpoint) the model every 20 epochs
|
|
if (epoch + 1) % 20 == 0:
|
|
checkpoint.save(file_prefix = checkpoint_prefix)
|
|
|
|
print ('Time taken for epoch {} is {} sec\n'.format(epoch + 1,
|
|
time.time()-start))
|
|
checkpoint.save(file_prefix = checkpoint_prefix)
|
|
```
|
|
|
|
This training loop saves logs you can easily view in TensorBoard to monitor the training progress. Working locally you would launch a separate tensorboard process. In a notebook, if you want to monitor with TensorBoard it's easiest to launch the viewer before starting the training.
|
|
|
|
To launch the viewer paste the following into a code-cell:
|
|
|
|
```py
|
|
%load_ext tensorboard
|
|
%tensorboard --logdir {log_dir}
|
|
```
|
|
|
|
Now run the training loop:
|
|
|
|
```py
|
|
fit(train_dataset, EPOCHS, test_dataset)
|
|
```
|
|
|
|

|
|
|
|
```py
|
|
Epoch: 149
|
|
....................................................................................................
|
|
....................................................................................................
|
|
....................................................................................................
|
|
....................................................................................................
|
|
|
|
Time taken for epoch 150 is 16.14578342437744 sec
|
|
|
|
```
|
|
|
|
If you want to share the TensorBoard results *publicly* you can upload the logs to [TensorBoard.dev](https://tensorboard.dev/) by copying the following into a code-cell.
|
|
|
|
**Note:** This requires a Google account.
|
|
|
|
```py
|
|
tensorboard dev upload --logdir {log_dir}
|
|
|
|
```
|
|
|
|
**Caution:** This command does not terminate. It's designed to continuously upload the results of long-running experiments. Once your data is uploaded you need to stop it using the "interrupt execution" option in your notebook tool.
|
|
|
|
You can view the [results of a previous run](https://tensorboard.dev/experiment/lZ0C6FONROaUMfjYkVyJqw) of this notebook on [TensorBoard.dev](https://tensorboard.dev/).
|
|
|
|
TensorBoard.dev is a managed experience for hosting, tracking, and sharing ML experiments with everyone.
|
|
|
|
It can also included inline using an `<iframe>`:
|
|
|
|
```py
|
|
display.IFrame(
|
|
src="https://tensorboard.dev/experiment/lZ0C6FONROaUMfjYkVyJqw",
|
|
width="100%",
|
|
height="1000px")
|
|
```
|
|
|
|
<devsite-iframe><iframe src="/tutorials/generative/pix2pix_528ecc0a7230cf0eefd54a1c1b455500df0787fc66f9b1de7498d3e87694f029.frame" class="framebox inherit-locale " allowfullscreen="" is-upgraded=""></iframe></devsite-iframe>
|
|
|
|
Interpreting the logs from a GAN is more subtle than a simple classification or regression model. Things to look for::
|
|
|
|
* Check that neither model has "won". If either the `gen_gan_loss` or the `disc_loss` gets very low it's an indicator that this model is dominating the other, and you are not successfully training the combined model.
|
|
* The value `log(2) = 0.69` is a good reference point for these losses, as it indicates a perplexity of 2: That the discriminator is on average equally uncertain about the two options.
|
|
* For the `disc_loss` a value below `0.69` means the discriminator is doing better than random, on the combined set of real+generated images.
|
|
* For the `gen_gan_loss` a value below `0.69` means the generator i doing better than random at foolding the descriminator.
|
|
* As training progresses the `gen_l1_loss` should go down.
|
|
|
|
## Restore the latest checkpoint and test
|
|
|
|
```py
|
|
ls {checkpoint_dir}
|
|
|
|
```
|
|
|
|
```py
|
|
checkpoint ckpt-5.data-00000-of-00001
|
|
ckpt-1.data-00000-of-00001 ckpt-5.index
|
|
ckpt-1.index ckpt-6.data-00000-of-00001
|
|
ckpt-2.data-00000-of-00001 ckpt-6.index
|
|
ckpt-2.index ckpt-7.data-00000-of-00001
|
|
ckpt-3.data-00000-of-00001 ckpt-7.index
|
|
ckpt-3.index ckpt-8.data-00000-of-00001
|
|
ckpt-4.data-00000-of-00001 ckpt-8.index
|
|
ckpt-4.index
|
|
|
|
```
|
|
|
|
```py
|
|
# restoring the latest checkpoint in checkpoint_dir
|
|
checkpoint.restore(tf.train.latest_checkpoint(checkpoint_dir))
|
|
```
|
|
|
|
```py
|
|
<tensorflow.python.training.tracking.util.CheckpointLoadStatus at 0x7f4fce701160>
|
|
|
|
```
|
|
|
|
## Generate using test dataset
|
|
|
|
```py
|
|
# Run the trained model on a few examples from the test dataset
|
|
for inp, tar in test_dataset.take(5):
|
|
generate_images(generator, inp, tar)
|
|
```
|
|
|
|

|
|
|
|

|
|
|
|

|
|
|
|

|
|
|
|
 |